From 4cc94a581c8da49c65d139da08d70aea1b5cf1e9 Mon Sep 17 00:00:00 2001 From: Rick Giles Date: Mon, 16 Dec 2002 00:57:03 +0000 Subject: [PATCH] dropped suffix "Check" --- docs/config_sizes.html | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/config_sizes.html b/docs/config_sizes.html index 085c8378d..2c02c8a6a 100644 --- a/docs/config_sizes.html +++ b/docs/config_sizes.html @@ -23,23 +23,23 @@ -

FileLengthCheck

Description

+

FileLength

Description

Checks for long source files.

@@ -71,9 +71,9 @@ To configure the check to accept files with up to 1500 lines:

-<config name="FileLength">
+<module name="FileLength">
       <property name="max" value="1500"/>
-</config>
+</module>
         

Package

@@ -85,7 +85,7 @@ TreeWalker

-

LineLengthCheck

Description

+

LineLength

Description

Checks for long lines.

@@ -129,18 +129,18 @@ To configure the check to accept lines up to 120 characters long:

-<config name="LineLength">
+<module name="LineLength">
       <property name="max" value="120"/>
-</config>
+</module>
         

To configure the check to ignore lines that begin with " * ", followed by just one word, such as within a Javadoc comment:

-<config name="LineLength">
+<module name="LineLength">
    <property name="ignorePattern" value="^ *\* *[^ ]+$"/>
-</config>
+</module>
         

Notes

@@ -159,7 +159,7 @@ TreeWalker

-

MethodLengthCheck

Description

+

MethodLength

Description

Checks for long methods and constructors.

@@ -197,16 +197,16 @@ To configure the check:

-<config name="MethodLength"/>
+<module name="MethodLength"/>
         

To configure the check so that it accepts methods with at most 60 lines:

-<config name="MethodLength">
+<module name="MethodLength">
    <property name="tokens" value="METHOD_DEF"/>
    <property name="max" value="60"/>
-</config>
+</module>
         

Package

@@ -219,7 +219,7 @@

-

ParameterNumberCheck

Description

+

ParameterNumber

Description

Checks the number of parameters of a method or constructor.

@@ -252,16 +252,16 @@ To configure the check:

-<config name="ParameterNumber"/>
+<module name="ParameterNumber"/>
       

To configure the check to allow 10 parameters for a method:

-<config name="ParameterNumber">
+<module name="ParameterNumber">
    <property name="max" value="10"/>
    <property name="tokens" value="METHOD_DEF"/>
-</config>
+</module>
       

Package