final public static String JAVA_FORMAT_LEADING_SPACE_IN_COMMENT(Code)
Add one more space to the begining of each line in the multi-line comment
if it's not already there. Values: java.lang.Boolean Effect: For example
in java:
/* this is * multiline comment *\/
becomes (when set to true)
/* this is * multiline comment *\/
JAVA_FORMAT_LEADING_STAR_IN_COMMENT
final public static String JAVA_FORMAT_LEADING_STAR_IN_COMMENT(Code)
Whether the '*' should be added at the new line in comment.
JAVA_FORMAT_NEWLINE_BEFORE_BRACE
final public static String JAVA_FORMAT_NEWLINE_BEFORE_BRACE(Code)
Whether insert extra new-line before the compound bracket or not. Values:
java.lang.Boolean instances Effect: if (test) { function(); } becomes
(when set to true) if (test) { function(); }
JAVA_FORMAT_SPACE_AFTER_COMMA
final public static String JAVA_FORMAT_SPACE_AFTER_COMMA(Code)
Whether insert space after the comma inside the parameter list. Values:
java.lang.Boolean instances Effect: function(a,b) becomes (when set to
true) function(a, b)
JAVA_FORMAT_SPACE_BEFORE_PARENTHESIS
final public static String JAVA_FORMAT_SPACE_BEFORE_PARENTHESIS(Code)
Whether insert extra space before the parenthesis or not. Values:
java.lang.Boolean instances Effect: function(a) becomes (when set to
true) function (a)
Fields inherited from org.netbeans.editor.ext.ExtSettingsNames