The phrase "wrap before X" means that a line break and spaces appear right before "X", such that "X" is vertically aligned with the first token in the immediately preceding line.
Name | Description |
---|---|
allowMultipleArgsPerLine | Whether multiple constructor call arguments in one line are allowed. |
allowMultipleParametersPerLine | Whether multiple constructor parameter declarations in one line are allowed. |
allowOneLineDecl | Whether to allow a complete constructor declaration in one single line. |
wrapDeclBeforeLCurly | Whether to wrap constructor declarations before the opening curly brace. |
wrapDeclBeforeName | Whether to wrap constructor declarations between the modifiers and the class name. |
protected MyClass() { super(null); }
protected MyClass(int x) {
Default values are underlined.
For a description of the individual values, click them.
protected MyClass(int x) {
Default values are underlined.
For a description of the individual values, click them.