Lets you control the wrapping options for Javadoc comments.
Lets you define the maximal column width that Javadoc comments are allowed to use. Jalopy tries to keep the comments within this range upon reformatting.
Since 1.0
Lets you disable automatic line wrapping for in-line tags. Please note that this means that in-line tags will always print in just one line. If the tag would exceed the maximal line length, a line break is inserted before the tag. But please be aware that the maximal line length could still be exceeded when the tag does not fit in a whole line!
Since 1.5
Example 2.806. Wrapped Javadoc in-line tag
/** |
* This is overridden to return false if the {@link java.awt.Icon |
* Icon’s} Image is not equal to the passed in Image. |
*/ |
Example 2.807. Javadoc in-line tag (wrapping disabled)
/** |
* This is overridden to return false if the |
* {@link java.awt.Icon Icon’s} Image is not equal to the passed |
* in Image. |
*/ |