Lets you disable line wrapping for certain elements.
Lets you specify whether wrapping along the dots of chained method calls should be disabled.
Since 1.0
Example 2.558. Wrapped chained method call
message.format(ERROR_SOURCE_ADDRESS)
.param(m_session.getAimName())
.send();
Example 2.559. Chained method call (wrapping disabled)
message.format(ERROR_SOURCE_ADDRESS).param(
m_session.getAimName()).send();
Note how in the above example, wrapping does not occur along the dots of the chained method call, but after the left parenthesis!
Lets you specify whether wrapping along the dots of chained index operators should be disabled.
Since 1.0
Note how in the above example wrapping does not occur along the dots of the index operator, but right after the assignment!
Lets you specify whether wrapping along the dots of qualifiers should be disabled.
Since 1.0
Note how in the above example, wrapping does not occur along the dots of the qualifier, but before the method call!
Lets you specify whether wrapping along dotted expressions should be disabled. This option covers all dotted expressions not handled by the more specific options for chained method calls, index operators or qualifiers (see above).
The option is enabled by default for compatibility reasons. If you're serious about the maximal line length limit, we recommend to disable the option.
Since 1.5