Interface EditorConstants
public interface EditorConstants
Copied from private NetBeans classes FmtOptions and SimpleValueNames.
- Author:
- bahlef
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Continuation ident size says how many spaces should the formatter use to indent after a new line of the more inner level of code.static final String
Whether expand typed tabs to spaces.static final String
Shift-width says how many spaces should the formatter use to indent the more inner level of code.static final String
How many spaces substitute per one typed tab.static final String
Number of spaces to draw when the '\t' character is found in the text.static final String
After how many characters the text limit line should be displayed.
-
Field Details
-
EXPAND_TABS
Whether expand typed tabs to spaces. The number of spaces to substitute per one typed tab is determined by SPACES_PER_TAB setting. Values: java.lang.Boolean instances- See Also:
-
TAB_SIZE
Number of spaces to draw when the '\t' character is found in the text. Better said when the drawing-engine finds a '\t' character it computes the next multiple of TAB_SIZE and continues drawing from that position. Values: java.lang.Integer instances- See Also:
-
SPACES_PER_TAB
How many spaces substitute per one typed tab. This parameter has effect only when EXPAND_TABS setting is set to true. This parameter has no influence on how the existing tabs are displayed. Values: java.lang.Integer instances- See Also:
-
INDENT_SHIFT_WIDTH
Shift-width says how many spaces should the formatter use to indent the more inner level of code. This setting is independent of TAB_SIZE and SPACES_PER_TAB. Values: java.lang.Integer instances- See Also:
-
CONTINUATION_INDENT_SIZE
Continuation ident size says how many spaces should the formatter use to indent after a new line of the more inner level of code. This setting is independent of TAB_SIZE and SPACES_PER_TAB. Values: java.lang.Integer instances- See Also:
-
TEXT_LIMIT_WIDTH
After how many characters the text limit line should be displayed. Values: java.awt.Integer instances- See Also:
-