From e95d9b668ff5d6fbc64ac13d7cd349a41367e830 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lars=20K=C3=BChne?= An example of how to configure the check to forbid
+ * An example of how to configure the check to forbid
* a {@link TokenTypes#LITERAL_NATIVE LITERAL_NATIVE} token is:
+ *
* <module name="FinalLocalVariable">
* <property name="token" value="VARIABLE_DEF"/>
- * </module>
+ * </module>
*
* @author k_gibbs, r_auckenthaler
*/
diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenCheck.java
index 74ce39836..4bfffafc5 100644
--- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenCheck.java
+++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenCheck.java
@@ -41,8 +41,9 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
*
* <module name="IllegalToken"/>
*
- * *
* <module name="IllegalToken">
* <property name="tokens" value="LITERAL_NATIVE"/>
diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.java
index 3ab7762b0..1fec8a787 100644
--- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.java
+++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/IllegalTokenTextCheck.java
@@ -31,6 +31,7 @@ import com.puppycrawl.tools.checkstyle.checks.GenericIllegalRegexpCheck;
*
An example of how to configure the check to forbid String literals
* containing "a href" is:
+ *
* <module name="IllegalTokenText"> * <property name="tokens" value="STRING_LITERAL"/> @@ -39,6 +40,7 @@ import com.puppycrawl.tools.checkstyle.checks.GenericIllegalRegexpCheck; **
An example of how to configure the check to forbid leading zeros in an * integer literal, other than zero and a hex literal is: + *
*
* <module name="IllegalTokenText">
* <property name="tokens" value="NUM_INT,NUM_LONG"/>
diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/InnerAssignmentCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/InnerAssignmentCheck.java
index 6de878600..368e5c604 100644
--- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/InnerAssignmentCheck.java
+++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/InnerAssignmentCheck.java
@@ -50,6 +50,7 @@ import com.puppycrawl.tools.checkstyle.api.DetailAST;
* {@link TokenTypes#STAR_ASSIGN STAR_ASSIGN}.
*
* An example of how to configure the check is:
+ *
*
* <module name="InnerAssignment"/>
*
diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocStyleCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocStyleCheck.java
index 8761bfbaa..2f6bee505 100755
--- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocStyleCheck.java
+++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocStyleCheck.java
@@ -33,21 +33,23 @@ import org.apache.regexp.RESyntaxException;
/**
* Custom Checkstyle Check to validate Javadoc.
* The following checks are performed:
+ *
* These checks were patterned after the checks made by the doclet
* com.sun.tools.doclets.doccheck.DocCheck
+ *
for (
- ; i < j; i++, j--)
+ ; i < j; i++, j--)
* * The policy to verify is specified using the {@link PadOption} class and @@ -44,7 +44,7 @@ for ( *
* <module name="EmptyForInitializerPad"/> *- *
+ * * @author lkuehne * @version 1.0 */