From bfe1cbdbed2787333fc55724b33a9f6c8f307fd7 Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Wed, 4 Sep 2002 04:04:03 +0000 Subject: [PATCH] Against a snap shot of changes I do not want to lose. --- docs/checks.html | 4 +-- docs/checks_whitespace.html | 64 +++++++++++++++++++++++++++++++++---- docs/property_types.html | 50 +++++++++++++++++++++++++++++ 3 files changed, 109 insertions(+), 9 deletions(-) diff --git a/docs/checks.html b/docs/checks.html index 7e7e5555a..f727e42ba 100644 --- a/docs/checks.html +++ b/docs/checks.html @@ -10,7 +10,6 @@
  • checks_blocks.html
  • checks_reporting.html
  • -
  • checks_whitespace.html
  • Checks for Headers
  • Checks for Javadoc comments
  • Miscellaneous Checks
  • @@ -18,10 +17,11 @@
  • Checks for Imports
  • Checks for sizes
  • Modifier Checks
  • +
  • Checks for whitespace

  • - Last modified: Mon Sep 02 21:47:15 EST 2002 + Last modified: Wed Sep 04 14:02:11 EST 2002 diff --git a/docs/checks_whitespace.html b/docs/checks_whitespace.html index b012e0c93..6318fb590 100644 --- a/docs/checks_whitespace.html +++ b/docs/checks_whitespace.html @@ -1,18 +1,68 @@ - + Checks for whitespace -

    +

    Checks for whitespace

    -
  • checkstyle.allow.tabs"
  • -
  • checkstyle.ignore.whitespace"
  • -
  • checkstyle.ignore.whitespace.cast"
  • -
  • checkstyle.paren.pad"
  • -
  • checkstyle.wrap.operator"
  • +

    Tab characters

    + +

    The property checkstyle.allow.tabs controls +whether to silently allow lines that contain tab ('\t') +characters. The property type is +boolean and defaults to +false.

    + +

    Surrounding Whitespace

    + +

    The property checkstyle.ignore.whitespace +controls whether to check whitespace. It overrides all the other properties in +this section. The property type is +boolean and defaults to +false.

    + +

    The following checks are performed:

    + + + + +

    The property checkstyle.ignore.whitespace.cast +controls whether to ignore checking for whitespace after a cast. The property +type is boolean and defaults to +false.

    + +

    The property checkstyle.paren.pad specifies the +policy on how parenthesises are to be padded. The property type is +pad parenthesis policy and defaults to nospace.

    + + +

    Line wrapping on operators

    + +

    The property checkstyle.wrap.operator specifies +the policy on how to wrap lines on operators. The property type is wrap operator policy and defaults to +nl.

    \ No newline at end of file diff --git a/docs/property_types.html b/docs/property_types.html index 955255c36..072c1ce35 100644 --- a/docs/property_types.html +++ b/docs/property_types.html @@ -46,5 +46,55 @@ parsed using the excellent Jakarta Regexp library.

    +

    Pad Parenthesis Policy

    + +

    This property represents the policy for padding parenthesises. The +following table describes the valid options:

    + + + + + + + + + + + + + + + + + + +
    OptionDefinition
    ignoreIgnore the padding.
    nospaceDo not pad. For example, method(a, b);
    spaceEnsure padding. For example, method( a, b );
    + + +

    Operator Wrap Policy

    + +

    This property represents the policy for wrapping lines on operators. The +following table describes the valid options:

    + + + + + + + + + + + + + + +
    OptionDefinition
    ignoreIgnore wrapping on an operator.
    nlThe operator must be on a new line. For example: +
    +    someVariable = aBigVariableNameToMakeThings + "this may work"
    +                   + lookVeryInteresting;
    +
    +
    +