The following document contains the results of Checkstyle 6.2 with sun_checks.xml ruleset. 
| Category | Rule | Violations | Severity |
|---|---|---|---|
| blocks | LeftCurly | 4 | |
| coding | HiddenField | 15 | |
| design | DesignForExtension | 36 | |
| VisibilityModifier | 1 | ||
| imports | AvoidStarImport | 2 | |
| RedundantImport | 1 | ||
| javadoc | JavadocMethod | 44 | |
| JavadocPackage | 6 | ||
| JavadocStyle | 1 | ||
| JavadocType | 5 | ||
| JavadocVariable | 21 | ||
| misc | FinalParameters | 51 | |
| NewlineAtEndOfFile | 1 | ||
| naming | ConstantName | 3 | |
| regexp | RegexpSingleline
|
52 | |
| sizes | LineLength | 34 | |
| whitespace | FileTabCharacter | 11 | |
| OperatorWrap | 2 | ||
| WhitespaceAfter | 6 | ||
| WhitespaceAround | 54 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| imports | RedundantImport | Redundant import from the same package - ejava.examples.ejbwar.customer.Customers. | 7 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 14 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 14 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 14 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 14 | |
| design | VisibilityModifier | Variable 'customerEM' must be private and have accessor methods. | 16 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| imports | AvoidStarImport | Using the '.*' form of import should be avoided - java.lang.annotation.RetentionPolicy.*. | 5 | |
| imports | AvoidStarImport | Using the '.*' form of import should be avoided - java.lang.annotation.ElementType.*. | 6 | |
| javadoc | JavadocType | Missing a Javadoc comment. | 9 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| javadoc | JavadocType | Missing a Javadoc comment. | 18 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 18 | |
| sizes | LineLength | Line is longer than 80 characters (found 81). | 19 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 19 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 20 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 26 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 26 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 28 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 28 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 28 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 29 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 29 | |
| whitespace | OperatorWrap | '+' should be on a new line. | 29 | |
| whitespace | OperatorWrap | '+' should be on a new line. | 30 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 34 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 35 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 35 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 35 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 36 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 37 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 37 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 37 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 38 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 38 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 40 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 41 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 41 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 41 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 41 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 41 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 43 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 44 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 44 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 44 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 44 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 44 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 46 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 47 | |
| whitespace | WhitespaceAround | '{' is not followed by whitespace. | 47 | |
| whitespace | WhitespaceAround | '}' is not preceded with whitespace. | 47 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 48 | |
| misc | FinalParameters | Parameter firstName should be final. | 48 | |
| coding | HiddenField | 'firstName' hides a field. | 48 | |
| misc | FinalParameters | Parameter lastName should be final. | 48 | |
| coding | HiddenField | 'lastName' hides a field. | 48 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 52 | |
| design | DesignForExtension | Method 'getId' is not designed for extension - needs to be abstract, final or empty. | 53 | |
| blocks | LeftCurly | '{' should have line break after. | 54 | |
| design | DesignForExtension | Method 'setId' is not designed for extension - needs to be abstract, final or empty. | 55 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 55 | |
| misc | FinalParameters | Parameter id should be final. | 55 | |
| coding | HiddenField | 'id' hides a field. | 55 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 58 | |
| design | DesignForExtension | Method 'getFirstName' is not designed for extension - needs to be abstract, final or empty. | 59 | |
| blocks | LeftCurly | '{' should have line break after. | 60 | |
| design | DesignForExtension | Method 'setFirstName' is not designed for extension - needs to be abstract, final or empty. | 61 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 61 | |
| misc | FinalParameters | Parameter firstName should be final. | 61 | |
| coding | HiddenField | 'firstName' hides a field. | 61 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 64 | |
| design | DesignForExtension | Method 'getLastName' is not designed for extension - needs to be abstract, final or empty. | 65 | |
| blocks | LeftCurly | '{' should have line break after. | 66 | |
| design | DesignForExtension | Method 'setLastName' is not designed for extension - needs to be abstract, final or empty. | 67 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 67 | |
| misc | FinalParameters | Parameter lastName should be final. | 67 | |
| coding | HiddenField | 'lastName' hides a field. | 67 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| sizes | LineLength | Line is longer than 80 characters (found 83). | 23 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 23 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 23 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 24 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 25 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 26 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 26 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 28 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 29 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 30 | |
| design | DesignForExtension | Method 'getVersion' is not designed for extension - needs to be abstract, final or empty. | 34 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 34 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 34 | |
| blocks | LeftCurly | '{' should have line break after. | 35 | |
| design | DesignForExtension | Method 'setVersion' is not designed for extension - needs to be abstract, final or empty. | 36 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 36 | |
| misc | FinalParameters | Parameter version should be final. | 36 | |
| coding | HiddenField | 'version' hides a field. | 36 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 39 | |
| sizes | LineLength | Line is longer than 80 characters (found 82). | 41 | |
| design | DesignForExtension | Method 'toString' is not designed for extension - needs to be abstract, final or empty. | 44 | |
| sizes | LineLength | Line is longer than 80 characters (found 87). | 49 | |
| sizes | LineLength | Line is longer than 80 characters (found 100). | 54 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 57 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 59 | |
| javadoc | JavadocMethod | Expected an @return tag. | 65 | |
| javadoc | JavadocMethod | Expected @param tag for '<T>'. | 66 | |
| misc | FinalParameters | Parameter clazz should be final. | 66 | |
| javadoc | JavadocMethod | Expected @param tag for 'clazz'. | 66 | |
| misc | FinalParameters | Parameter is should be final. | 66 | |
| javadoc | JavadocMethod | Expected @param tag for 'is'. | 66 | |
| sizes | LineLength | Line is longer than 80 characters (found 100). | 72 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 15 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 18 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 19 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 19 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 23 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 23 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 24 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 25 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 26 | |
| whitespace | WhitespaceAround | '=' is not preceded with whitespace. | 26 | |
| whitespace | WhitespaceAround | '=' is not followed by whitespace. | 26 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 27 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 28 | |
| whitespace | WhitespaceAround | '{' is not followed by whitespace. | 28 | |
| whitespace | WhitespaceAround | '}' is not preceded with whitespace. | 28 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 29 | |
| misc | FinalParameters | Parameter customers should be final. | 29 | |
| coding | HiddenField | 'customers' hides a field. | 29 | |
| misc | FinalParameters | Parameter offset should be final. | 29 | |
| coding | HiddenField | 'offset' hides a field. | 29 | |
| misc | FinalParameters | Parameter limit should be final. | 29 | |
| coding | HiddenField | 'limit' hides a field. | 29 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 34 | |
| design | DesignForExtension | Method 'getOffset' is not designed for extension - needs to be abstract, final or empty. | 35 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 35 | |
| design | DesignForExtension | Method 'setOffset' is not designed for extension - needs to be abstract, final or empty. | 39 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 39 | |
| misc | FinalParameters | Parameter offset should be final. | 39 | |
| coding | HiddenField | 'offset' hides a field. | 39 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 42 | |
| design | DesignForExtension | Method 'getLimit' is not designed for extension - needs to be abstract, final or empty. | 43 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 43 | |
| design | DesignForExtension | Method 'setLimit' is not designed for extension - needs to be abstract, final or empty. | 47 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 47 | |
| misc | FinalParameters | Parameter limit should be final. | 47 | |
| coding | HiddenField | 'limit' hides a field. | 47 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 50 | |
| design | DesignForExtension | Method 'getCount' is not designed for extension - needs to be abstract, final or empty. | 51 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 51 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 55 | |
| misc | FinalParameters | Parameter count should be final. | 55 | |
| whitespace | WhitespaceAround | '{' is not followed by whitespace. | 55 | |
| whitespace | WhitespaceAround | '}' is not preceded with whitespace. | 55 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 56 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 57 | |
| design | DesignForExtension | Method 'getCustomers' is not designed for extension - needs to be abstract, final or empty. | 58 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 58 | |
| design | DesignForExtension | Method 'setCategories' is not designed for extension - needs to be abstract, final or empty. | 62 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 62 | |
| misc | FinalParameters | Parameter customers should be final. | 62 | |
| coding | HiddenField | 'customers' hides a field. | 62 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 65 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 66 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 11 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 11 | |
| sizes | LineLength | Line is longer than 80 characters (found 113). | 12 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 12 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 13 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 14 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| regexp | RegexpSingleline | Line has trailing spaces. | 27 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 32 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 32 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 32 | |
| naming | ConstantName | Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. | 32 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 33 | |
| design | DesignForExtension | Method 'setHttpClient' is not designed for extension - needs to be abstract, final or empty. | 39 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 39 | |
| misc | FinalParameters | Parameter client should be final. | 39 | |
| coding | HiddenField | 'client' hides a field. | 39 | |
| design | DesignForExtension | Method 'setAppURI' is not designed for extension - needs to be abstract, final or empty. | 42 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 42 | |
| misc | FinalParameters | Parameter appURI should be final. | 42 | |
| coding | HiddenField | 'appURI' hides a field. | 42 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 44 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 45 | |
| javadoc | JavadocMethod | Expected an @return tag. | 54 | |
| sizes | LineLength | Line is longer than 80 characters (found 82). | 54 | |
| design | DesignForExtension | Method 'buildURI' is not designed for extension - needs to be abstract, final or empty. | 54 | |
| javadoc | JavadocMethod | Expected @param tag for '<T>'. | 54 | |
| misc | FinalParameters | Parameter resourceClass should be final. | 54 | |
| javadoc | JavadocMethod | Expected @param tag for 'resourceClass'. | 54 | |
| misc | FinalParameters | Parameter method should be final. | 54 | |
| javadoc | JavadocMethod | Expected @param tag for 'method'. | 54 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 55 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 58 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 64 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 65 | |
| sizes | LineLength | Line is longer than 80 characters (found 87). | 66 | |
| design | DesignForExtension | Method 'addCustomer' is not designed for extension - needs to be abstract, final or empty. | 69 | |
| misc | FinalParameters | Parameter customer should be final. | 70 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 71 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 73 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 76 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 78 | |
| sizes | LineLength | Line is longer than 80 characters (found 106). | 82 | |
| design | DesignForExtension | Method 'findCustomersByName' is not designed for extension - needs to be abstract, final or empty. | 90 | |
| sizes | LineLength | Line is longer than 80 characters (found 121). | 91 | |
| misc | FinalParameters | Parameter firstName should be final. | 91 | |
| misc | FinalParameters | Parameter lastName should be final. | 91 | |
| misc | FinalParameters | Parameter offset should be final. | 91 | |
| misc | FinalParameters | Parameter limit should be final. | 91 | |
| sizes | LineLength | Line is longer than 80 characters (found 82). | 92 | |
| sizes | LineLength | Line is longer than 80 characters (found 81). | 93 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 93 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 100 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 101 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 104 | |
| sizes | LineLength | Line is longer than 80 characters (found 101). | 108 | |
| sizes | LineLength | Line is longer than 80 characters (found 81). | 109 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 115 | |
| design | DesignForExtension | Method 'getCustomer' is not designed for extension - needs to be abstract, final or empty. | 116 | |
| misc | FinalParameters | Parameter id should be final. | 117 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 118 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 121 | |
| sizes | LineLength | Line is longer than 80 characters (found 101). | 128 | |
| design | DesignForExtension | Method 'deleteCustomer' is not designed for extension - needs to be abstract, final or empty. | 136 | |
| misc | FinalParameters | Parameter id should be final. | 137 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 138 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 141 | |
| sizes | LineLength | Line is longer than 80 characters (found 101). | 148 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| misc | NewlineAtEndOfFile | File does not end with a newline. | ||
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 11 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 11 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 12 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 14 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 15 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 16 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 16 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 16 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 18 | |
| design | DesignForExtension | Method 'createCustomer' is not designed for extension - needs to be abstract, final or empty. | 19 | |
| misc | FinalParameters | Parameter customer should be final. | 20 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 21 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 23 | |
| design | DesignForExtension | Method 'findCustomerByName' is not designed for extension - needs to be abstract, final or empty. | 24 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 25 | |
| misc | FinalParameters | Parameter firstName should be final. | 25 | |
| misc | FinalParameters | Parameter lastName should be final. | 25 | |
| misc | FinalParameters | Parameter offset should be final. | 26 | |
| misc | FinalParameters | Parameter limit should be final. | 26 | |
| sizes | LineLength | Line is longer than 80 characters (found 103). | 27 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 38 | |
| design | DesignForExtension | Method 'getCustomer' is not designed for extension - needs to be abstract, final or empty. | 39 | |
| misc | FinalParameters | Parameter id should be final. | 40 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 43 | |
| design | DesignForExtension | Method 'update' is not designed for extension - needs to be abstract, final or empty. | 44 | |
| misc | FinalParameters | Parameter customer should be final. | 45 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 48 | |
| design | DesignForExtension | Method 'deleteCustomer' is not designed for extension - needs to be abstract, final or empty. | 49 | |
| misc | FinalParameters | Parameter customer should be final. | 50 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 11 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 11 | |
| sizes | LineLength | Line is longer than 80 characters (found 96). | 12 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 12 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 13 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 14 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocType | Missing a Javadoc comment. | 15 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 17 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 17 | |
| naming | ConstantName | Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. | 17 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 18 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 19 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 21 | |
| design | DesignForExtension | Method 'addCustomer' is not designed for extension - needs to be abstract, final or empty. | 22 | |
| misc | FinalParameters | Parameter customer should be final. | 23 | |
| design | DesignForExtension | Method 'findCustomersByName' is not designed for extension - needs to be abstract, final or empty. | 29 | |
| misc | FinalParameters | Parameter firstName should be final. | 30 | |
| misc | FinalParameters | Parameter lastName should be final. | 30 | |
| misc | FinalParameters | Parameter offset should be final. | 31 | |
| misc | FinalParameters | Parameter limit should be final. | 31 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 32 | |
| sizes | LineLength | Line is longer than 80 characters (found 102). | 34 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 41 | |
| design | DesignForExtension | Method 'getCustomer' is not designed for extension - needs to be abstract, final or empty. | 42 | |
| misc | FinalParameters | Parameter id should be final. | 43 | |
| design | DesignForExtension | Method 'deleteCustomer' is not designed for extension - needs to be abstract, final or empty. | 48 | |
| misc | FinalParameters | Parameter id should be final. | 49 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocType | Missing a Javadoc comment. | 5 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| javadoc | JavadocType | Missing a Javadoc comment. | 5 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| sizes | LineLength | Line is longer than 80 characters (found 82). | 36 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 36 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 36 | |
| naming | ConstantName | Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. | 36 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 37 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 39 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 41 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 43 | |
| design | DesignForExtension | Method 'addCustomer' is not designed for extension - needs to be abstract, final or empty. | 44 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 44 | |
| misc | FinalParameters | Parameter customer should be final. | 47 | |
| sizes | LineLength | Line is longer than 80 characters (found 98). | 48 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 52 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 61 | |
| design | DesignForExtension | Method 'findCustomersByName' is not designed for extension - needs to be abstract, final or empty. | 62 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 62 | |
| misc | FinalParameters | Parameter firstName should be final. | 65 | |
| misc | FinalParameters | Parameter lastName should be final. | 66 | |
| misc | FinalParameters | Parameter offset should be final. | 67 | |
| misc | FinalParameters | Parameter limit should be final. | 68 | |
| sizes | LineLength | Line is longer than 80 characters (found 98). | 69 | |
| sizes | LineLength | Line is longer than 80 characters (found 106). | 71 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 78 | |
| design | DesignForExtension | Method 'getCustomer' is not designed for extension - needs to be abstract, final or empty. | 79 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 79 | |
| misc | FinalParameters | Parameter id should be final. | 81 | |
| sizes | LineLength | Line is longer than 80 characters (found 98). | 82 | |
| whitespace | WhitespaceAround | '!=' is not preceded with whitespace. | 85 | |
| whitespace | WhitespaceAround | '!=' is not followed by whitespace. | 85 | |
| sizes | LineLength | Line is longer than 80 characters (found 81). | 89 | |
| sizes | LineLength | Line is longer than 80 characters (found 97). | 90 | |
| design | DesignForExtension | Method 'deleteCustomer' is not designed for extension - needs to be abstract, final or empty. | 99 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 99 | |
| misc | FinalParameters | Parameter id should be final. | 101 | |
| sizes | LineLength | Line is longer than 80 characters (found 98). | 102 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 111 | |
| sizes | LineLength | Line is longer than 80 characters (found 90). | 112 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 112 | |
| misc | FinalParameters | Parameter log should be final. | 112 | |
| coding | HiddenField | 'log' hides a field. | 112 | |
| misc | FinalParameters | Parameter context should be final. | 112 | |
| misc | FinalParameters | Parameter ex should be final. | 112 | |
| sizes | LineLength | Line is longer than 80 characters (found 108). | 113 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 113 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 119 |