XHTML compliant javadoc

This commit is contained in:
Lars Kühne 2004-04-27 04:38:45 +00:00
parent 3633f683b5
commit d70e4732c3
8 changed files with 8 additions and 6 deletions

View File

@ -46,7 +46,7 @@ import com.puppycrawl.tools.checkstyle.checks.usage.transmogrify.SymTabAST;
* <pre>
* &lt;module name="usage.OneMethodPrivateField"/&gt;
* </pre>
* <p>
*
* @author Rick Giles
*/
public class OneMethodPrivateFieldCheck

View File

@ -32,7 +32,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* <pre>
* &lt;module name="usage.UnusedLocalVariable"/&gt;
* </pre>
* <p>
*
* @author Rick Giles
*/
public class UnusedLocalVariableCheck extends AbstractUsageCheck

View File

@ -31,7 +31,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* <pre>
* &lt;module name="usage.UnusedParameter"/&gt;
* </pre>
* <p>
*
* @author Rick Giles
*/
public class UnusedParameterCheck extends AbstractUsageCheck

View File

@ -33,7 +33,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* <pre>
* &lt;module name="usage.UnusedPrivateField"/&gt;
* </pre>
* <p>
*
* @author Rick Giles
*/
public class UnusedPrivateFieldCheck

View File

@ -32,7 +32,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* <pre>
* &lt;module name="usage.UnusedPrivateMethod"/&gt;
* </pre>
* <p>
*
* @author Rick Giles
*/
public class UnusedPrivateMethodCheck

View File

@ -43,7 +43,7 @@ for (Iterator foo = very.long.line.iterator();
* <pre>
* &lt;module name="EmptyForIteratorPad"/&gt;
* </pre>
* <p>
*
* @author Rick Giles
* @version 1.0
*/

View File

@ -49,6 +49,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
* <p> An example of how to configure the check to forbid linebreaks after
* a {@link TokenTypes#DOT DOT} token is:
* </p>
* <pre>
* &lt;module name="NoWhitespaceAfter"&gt;
* &lt;property name="tokens" value="DOT"/&gt;

View File

@ -47,6 +47,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </pre>
* <p> An example of how to configure the check to allow linebreaks before
* a {@link TokenTypes#DOT DOT} token is:
* </p>
* <pre>
* &lt;module name="NoWhitespaceBefore"&gt;
* &lt;property name="tokens" value="DOT"/&gt;