public class EditorSettings
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
boolean |
isAutoPrefix() |
boolean |
isCloseConstructsAutomatically()
Constructs such as :IF or :WHILE can automatically be completed with the corresponding closing statement (:ENDIF, :ENDWHILE).
|
boolean |
isShowHelpForParameterInfo() |
boolean |
isShowParameterInfo() |
boolean |
isSuggestKeepIndent()
For the purpose of keeping a clear structure, scripting lines in constructs
such as :IF or :WHILE should be indented.
|
void |
setAutoPrefix(boolean useFirstCharacterFromPreviousLine)
Defines if the prefix of the previous line should be automatically added when a new line is created in the ScriptEditor.
|
void |
setCloseConstructsAutomatically(boolean closeConstructsAutomatically)
Constructs such as :IF or :WHILE can automatically be completed with the corresponding closing statement (:ENDIF, :ENDWHILE).
|
void |
setShowHelpForParameterInfo(boolean showHelpForParameterInfo) |
void |
setShowParameterInfo(boolean showParameterInfo)
Defines if the parameter info should be shown in the ScriptEditor.
|
void |
setSuggestKeepIndent(boolean suggestKeepIndent)
For the purpose of keeping a clear structure, scripting lines in constructs
such as :IF or :WHILE should be indented.
|
public boolean isShowParameterInfo()
public void setShowParameterInfo(boolean showParameterInfo)
showParameterInfo
- true if the parameter info should be shown, false if not.public boolean isShowHelpForParameterInfo()
public void setShowHelpForParameterInfo(boolean showHelpForParameterInfo)
showHelpForParameterInfo
- true if a documentation of parameters should be shown, false if not.public boolean isAutoPrefix()
public void setAutoPrefix(boolean useFirstCharacterFromPreviousLine)
useFirstCharacterFromPreviousLine
- Add prefix to new linespublic boolean isSuggestKeepIndent()
public void setSuggestKeepIndent(boolean suggestKeepIndent)
suggestKeepIndent
- true if this feature should be enabled, false if notpublic boolean isCloseConstructsAutomatically()
public void setCloseConstructsAutomatically(boolean closeConstructsAutomatically)
closeConstructsAutomatically
- true if this feature should be enabled, false if not