From 76e9e8ee631399e45f641c12a164dd140939db50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Sun, 24 Oct 2004 10:18:50 +0000 Subject: [PATCH] changed javadoc for better results in overview pages --- .../checks/coding/DeclarationOrderCheck.java | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java index 67cf30be7..b75e11b4a 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java @@ -27,13 +27,14 @@ import java.util.Stack; /** *

- * According to + * Checks that the parts of a class or interface declaration + * appear in the order suggested by the * - * Code Conventions for the Java Programming Language - * , the parts of a class or interface declaration should appear in the - * following order - * + * href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc2.html#1852" + * >Code Conventions for the Java Programming Language. + *

+ *

+ *

    *
  1. Class (static) variables. First the public class variables, then * the protected, then package level (no access modifier), and then * the private.
  2. @@ -42,6 +43,7 @@ import java.util.Stack; * the private. *
  3. Constructors
  4. *
  5. Methods
  6. + *
*

*

* An example of how to configure the check is: