Added patch from Peter Dobratz to improve documentation. Thanks.

This commit is contained in:
Oliver Burn 2003-02-28 12:14:03 +00:00
parent 8c42377886
commit 0f8970e390
1 changed files with 3 additions and 0 deletions

View File

@ -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()
{