From 0f8970e3901a671c3b0a331dcaec71ff269b7bc9 Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Fri, 28 Feb 2003 12:14:03 +0000 Subject: [PATCH] Added patch from Peter Dobratz to improve documentation. Thanks. --- src/checkstyle/com/puppycrawl/tools/checkstyle/api/Check.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/Check.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/Check.java index 0d0b51069..24ba085d1 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/Check.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/Check.java @@ -52,6 +52,7 @@ public abstract class Check extends AutomaticBean * Returns the default token a check is interested in. Only used if the * configuration for a check does not define the tokens. * @return the default tokens + * @see TokenTypes */ public abstract int[] getDefaultTokens(); @@ -61,6 +62,7 @@ public abstract class Check extends AutomaticBean * unacceptable token set in the configuration file. * The default implementation returns the check's default tokens. * @return the token set this check is designed for. + * @see TokenTypes */ public int[] getAcceptableTokens() { @@ -73,6 +75,7 @@ public abstract class Check extends AutomaticBean /** * The tokens that this check must be registered for. * @return the token set this must be registered for. + * @see TokenTypes */ public int[] getRequiredTokens() {