Lets you control miscellaneous Javadoc settings.
Lets you define the amount of white space that gets printed between block tags and their description text.
Since 1.0
Example 2.779. One space inner spacing
/**
* Returns the next list element that starts with a prefix.
*
* @param prefix the string to test for a match
* @param startIndex the index for starting the search
* @param bias the search direction, either Position.Bias. Forward
* or Position. Bias.Backward.
*
* @return the index of the next list element that starts with the prefix;
* otherwise -1
*
* @exception IllegalArgumentException if prefix is null or startIndex is out
* of bounds
* ^ ^
* @since 1.4
*/
Example 2.780. Two spaces inner spacing
/**
* Returns the next list element that starts with a prefix.
*
* @param prefix the string to test for a match
* @param startIndex the index for starting the search
* @param bias the search direction, either Position.Bias.
* Forward or Position.Bias.Backward.
* @return the index of the next list element that starts with the
* prefix; otherwise -1
* @exception IllegalArgumentException if prefix is null or startIndex is
* out of bounds
* ^^ ^^
* @since 1.4
*/
Enables the indentation of most HTML block tags (like lists, tables and the like).
Please note that the HTML contents have to be well-formed for this feature to work! By default, Jalopy will inform you about invalid HTML when this feature was enabled. Another choice might be to enable the "Check HTML tags" feature to automatically ensure well-formed HTML (among other things, see below).
Since 1.0