The following document contains the results of Checkstyle 6.2 with sun_checks.xml ruleset. 
| Category | Rule | Violations | Severity |
|---|---|---|---|
| blocks | LeftCurly | 8 | |
| NeedBraces | 2 | ||
| coding | AvoidInlineConditionals | 1 | |
| HiddenField | 41 | ||
| MagicNumber | 3 | ||
| design | DesignForExtension | 96 | |
| HideUtilityClassConstructor | 1 | ||
| VisibilityModifier | 48 | ||
| javadoc | JavadocMethod | 82 | |
| JavadocPackage | 1 | ||
| JavadocStyle | 23 | ||
| JavadocType | 6 | ||
| JavadocVariable | 50 | ||
| misc | ArrayTypeStyle | 1 | |
| FinalParameters | 59 | ||
| regexp | RegexpSingleline
|
312 | |
| sizes | LineLength | 90 | |
| ParameterNumber | 3 | ||
| whitespace | FileTabCharacter | 3 | |
| OperatorWrap | 4 | ||
| WhitespaceAfter | 5 | ||
| WhitespaceAround | 15 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 27 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 28 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 29 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 35 | |
| sizes | LineLength | Line is longer than 80 characters (found 89). | 36 | |
| sizes | LineLength | Line is longer than 80 characters (found 90). | 37 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 38 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 39 | |
| sizes | LineLength | Line is longer than 80 characters (found 87). | 40 | |
| sizes | LineLength | Line is longer than 80 characters (found 99). | 41 | |
| sizes | LineLength | Line is longer than 80 characters (found 101). | 42 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 48 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 49 | |
| blocks | LeftCurly | '{' should be on the previous line. | 65 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 67 | |
| design | VisibilityModifier | Variable 'login' must be private and have accessor methods. | 68 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 69 | |
| design | VisibilityModifier | Variable 'firstName' must be private and have accessor methods. | 70 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 71 | |
| design | VisibilityModifier | Variable 'middleName' must be private and have accessor methods. | 72 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 73 | |
| design | VisibilityModifier | Variable 'lastName' must be private and have accessor methods. | 74 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 75 | |
| design | VisibilityModifier | Variable 'email' must be private and have accessor methods. | 76 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 77 | |
| design | VisibilityModifier | Variable 'startDate' must be private and have accessor methods. | 80 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 81 | |
| design | VisibilityModifier | Variable 'endDate' must be private and have accessor methods. | 84 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 85 | |
| design | VisibilityModifier | Variable 'address' must be private and have accessor methods. | 88 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 90 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 92 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 98 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 100 | |
| sizes | LineLength | Line is longer than 80 characters (found 222). | 102 | |
| sizes | ParameterNumber | More than 7 parameters (found 9). | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'refid'. | 102 | |
| coding | HiddenField | 'login' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'login'. | 102 | |
| coding | HiddenField | 'firstName' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'firstName'. | 102 | |
| coding | HiddenField | 'middleName' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'middleName'. | 102 | |
| coding | HiddenField | 'lastName' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'lastName'. | 102 | |
| coding | HiddenField | 'email' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'email'. | 102 | |
| coding | HiddenField | 'startDate' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'startDate'. | 102 | |
| coding | HiddenField | 'endDate' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'endDate'. | 102 | |
| coding | HiddenField | 'address' hides a field. | 102 | |
| javadoc | JavadocMethod | Expected @param tag for 'address'. | 102 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 116 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 120 | |
| design | DesignForExtension | Method 'getLogin' is not designed for extension - needs to be abstract, final or empty. | 122 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 128 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 132 | |
| design | DesignForExtension | Method 'setLogin' is not designed for extension - needs to be abstract, final or empty. | 134 | |
| misc | FinalParameters | Parameter value should be final. | 134 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 140 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 144 | |
| design | DesignForExtension | Method 'getFirstName' is not designed for extension - needs to be abstract, final or empty. | 146 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 152 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 156 | |
| design | DesignForExtension | Method 'setFirstName' is not designed for extension - needs to be abstract, final or empty. | 158 | |
| misc | FinalParameters | Parameter value should be final. | 158 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 164 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 168 | |
| design | DesignForExtension | Method 'getMiddleName' is not designed for extension - needs to be abstract, final or empty. | 170 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 176 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 180 | |
| design | DesignForExtension | Method 'setMiddleName' is not designed for extension - needs to be abstract, final or empty. | 182 | |
| misc | FinalParameters | Parameter value should be final. | 182 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 188 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 192 | |
| design | DesignForExtension | Method 'getLastName' is not designed for extension - needs to be abstract, final or empty. | 194 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 200 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 204 | |
| design | DesignForExtension | Method 'setLastName' is not designed for extension - needs to be abstract, final or empty. | 206 | |
| misc | FinalParameters | Parameter value should be final. | 206 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 212 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 216 | |
| design | DesignForExtension | Method 'getEmail' is not designed for extension - needs to be abstract, final or empty. | 218 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 224 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 228 | |
| design | DesignForExtension | Method 'setEmail' is not designed for extension - needs to be abstract, final or empty. | 230 | |
| misc | FinalParameters | Parameter value should be final. | 230 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 236 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 240 | |
| design | DesignForExtension | Method 'getStartDate' is not designed for extension - needs to be abstract, final or empty. | 242 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 248 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 252 | |
| design | DesignForExtension | Method 'setStartDate' is not designed for extension - needs to be abstract, final or empty. | 254 | |
| misc | FinalParameters | Parameter value should be final. | 254 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 260 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 264 | |
| design | DesignForExtension | Method 'getEndDate' is not designed for extension - needs to be abstract, final or empty. | 266 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 272 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 276 | |
| design | DesignForExtension | Method 'setEndDate' is not designed for extension - needs to be abstract, final or empty. | 278 | |
| misc | FinalParameters | Parameter value should be final. | 278 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 284 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 289 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 290 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 296 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 297 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 301 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 302 | |
| javadoc | JavadocMethod | Expected an @return tag. | 304 | |
| design | DesignForExtension | Method 'getAddress' is not designed for extension - needs to be abstract, final or empty. | 304 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| javadoc | JavadocType | Missing a Javadoc comment. | 14 | |
| blocks | LeftCurly | '{' should be on the previous line. | 16 | |
| design | DesignForExtension | Method 'unmarshal' is not designed for extension - needs to be abstract, final or empty. | 19 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 19 | |
| misc | FinalParameters | Parameter value should be final. | 19 | |
| design | DesignForExtension | Method 'marshal' is not designed for extension - needs to be abstract, final or empty. | 23 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 23 | |
| misc | FinalParameters | Parameter value should be final. | 23 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| javadoc | JavadocType | Missing a Javadoc comment. | 14 | |
| blocks | LeftCurly | '{' should be on the previous line. | 16 | |
| design | DesignForExtension | Method 'unmarshal' is not designed for extension - needs to be abstract, final or empty. | 19 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 19 | |
| misc | FinalParameters | Parameter value should be final. | 19 | |
| design | DesignForExtension | Method 'marshal' is not designed for extension - needs to be abstract, final or empty. | 23 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 23 | |
| misc | FinalParameters | Parameter value should be final. | 23 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| javadoc | JavadocType | Missing a Javadoc comment. | 13 | |
| blocks | LeftCurly | '{' should be on the previous line. | 15 | |
| design | DesignForExtension | Method 'unmarshal' is not designed for extension - needs to be abstract, final or empty. | 18 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 18 | |
| misc | FinalParameters | Parameter value should be final. | 18 | |
| design | DesignForExtension | Method 'marshal' is not designed for extension - needs to be abstract, final or empty. | 22 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 22 | |
| misc | FinalParameters | Parameter value should be final. | 22 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| javadoc | JavadocType | Missing a Javadoc comment. | 13 | |
| blocks | LeftCurly | '{' should be on the previous line. | 15 | |
| design | DesignForExtension | Method 'unmarshal' is not designed for extension - needs to be abstract, final or empty. | 18 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 18 | |
| misc | FinalParameters | Parameter value should be final. | 18 | |
| design | DesignForExtension | Method 'marshal' is not designed for extension - needs to be abstract, final or empty. | 22 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 22 | |
| misc | FinalParameters | Parameter value should be final. | 22 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 23 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 24 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 25 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 31 | |
| sizes | LineLength | Line is longer than 80 characters (found 89). | 32 | |
| sizes | LineLength | Line is longer than 80 characters (found 86). | 33 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 34 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 35 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 36 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 38 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 43 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 44 | |
| blocks | LeftCurly | '{' should be on the previous line. | 58 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 60 | |
| design | VisibilityModifier | Variable 'name' must be private and have accessor methods. | 61 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 62 | |
| design | VisibilityModifier | Variable 'addressee' must be private and have accessor methods. | 63 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 64 | |
| design | VisibilityModifier | Variable 'street' must be private and have accessor methods. | 65 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 66 | |
| design | VisibilityModifier | Variable 'city' must be private and have accessor methods. | 67 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 68 | |
| design | VisibilityModifier | Variable 'state' must be private and have accessor methods. | 69 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 70 | |
| design | VisibilityModifier | Variable 'zip' must be private and have accessor methods. | 71 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 72 | |
| design | VisibilityModifier | Variable 'id' must be private and have accessor methods. | 75 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 77 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 79 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 85 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 87 | |
| sizes | LineLength | Line is longer than 80 characters (found 179). | 89 | |
| sizes | ParameterNumber | More than 7 parameters (found 8). | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'refid'. | 89 | |
| coding | HiddenField | 'name' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'name'. | 89 | |
| coding | HiddenField | 'addressee' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'addressee'. | 89 | |
| coding | HiddenField | 'street' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'street'. | 89 | |
| coding | HiddenField | 'city' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'city'. | 89 | |
| coding | HiddenField | 'state' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'state'. | 89 | |
| coding | HiddenField | 'zip' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'zip'. | 89 | |
| coding | HiddenField | 'id' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'id'. | 89 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 102 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 106 | |
| design | DesignForExtension | Method 'getName' is not designed for extension - needs to be abstract, final or empty. | 108 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 114 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 118 | |
| design | DesignForExtension | Method 'setName' is not designed for extension - needs to be abstract, final or empty. | 120 | |
| misc | FinalParameters | Parameter value should be final. | 120 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 126 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 130 | |
| design | DesignForExtension | Method 'getAddressee' is not designed for extension - needs to be abstract, final or empty. | 132 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 138 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 142 | |
| design | DesignForExtension | Method 'setAddressee' is not designed for extension - needs to be abstract, final or empty. | 144 | |
| misc | FinalParameters | Parameter value should be final. | 144 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 150 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 154 | |
| design | DesignForExtension | Method 'getStreet' is not designed for extension - needs to be abstract, final or empty. | 156 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 162 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 166 | |
| design | DesignForExtension | Method 'setStreet' is not designed for extension - needs to be abstract, final or empty. | 168 | |
| misc | FinalParameters | Parameter value should be final. | 168 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 174 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 178 | |
| design | DesignForExtension | Method 'getCity' is not designed for extension - needs to be abstract, final or empty. | 180 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 186 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 190 | |
| design | DesignForExtension | Method 'setCity' is not designed for extension - needs to be abstract, final or empty. | 192 | |
| misc | FinalParameters | Parameter value should be final. | 192 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 198 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 202 | |
| design | DesignForExtension | Method 'getState' is not designed for extension - needs to be abstract, final or empty. | 204 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 210 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 214 | |
| design | DesignForExtension | Method 'setState' is not designed for extension - needs to be abstract, final or empty. | 216 | |
| misc | FinalParameters | Parameter value should be final. | 216 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 222 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 226 | |
| design | DesignForExtension | Method 'getZip' is not designed for extension - needs to be abstract, final or empty. | 228 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 234 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 238 | |
| design | DesignForExtension | Method 'setZip' is not designed for extension - needs to be abstract, final or empty. | 240 | |
| misc | FinalParameters | Parameter value should be final. | 240 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 246 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 250 | |
| design | DesignForExtension | Method 'getId' is not designed for extension - needs to be abstract, final or empty. | 252 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 258 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 262 | |
| design | DesignForExtension | Method 'setId' is not designed for extension - needs to be abstract, final or empty. | 264 | |
| misc | FinalParameters | Parameter value should be final. | 264 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 27 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 28 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 29 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 35 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 36 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 37 | |
| sizes | LineLength | Line is longer than 80 characters (found 91). | 38 | |
| sizes | LineLength | Line is longer than 80 characters (found 91). | 39 | |
| sizes | LineLength | Line is longer than 80 characters (found 89). | 40 | |
| sizes | LineLength | Line is longer than 80 characters (found 92). | 41 | |
| sizes | LineLength | Line is longer than 80 characters (found 107). | 42 | |
| sizes | LineLength | Line is longer than 80 characters (found 108). | 43 | |
| sizes | LineLength | Line is longer than 80 characters (found 98). | 44 | |
| sizes | LineLength | Line is longer than 80 characters (found 99). | 45 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 47 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 52 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 53 | |
| blocks | LeftCurly | '{' should be on the previous line. | 72 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 74 | |
| design | VisibilityModifier | Variable 'seller' must be private and have accessor methods. | 77 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 78 | |
| design | VisibilityModifier | Variable 'title' must be private and have accessor methods. | 79 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 80 | |
| design | VisibilityModifier | Variable 'category' must be private and have accessor methods. | 81 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 82 | |
| design | VisibilityModifier | Variable 'description' must be private and have accessor methods. | 83 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 84 | |
| design | VisibilityModifier | Variable 'startTime' must be private and have accessor methods. | 87 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 88 | |
| design | VisibilityModifier | Variable 'endTime' must be private and have accessor methods. | 91 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 92 | |
| design | VisibilityModifier | Variable 'askingPrice' must be private and have accessor methods. | 95 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 96 | |
| design | VisibilityModifier | Variable 'bid' must be private and have accessor methods. | 97 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 98 | |
| design | VisibilityModifier | Variable 'purchasePrice' must be private and have accessor methods. | 101 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 102 | |
| design | VisibilityModifier | Variable 'buyer' must be private and have accessor methods. | 104 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 105 | |
| design | VisibilityModifier | Variable 'shipTo' must be private and have accessor methods. | 107 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 108 | |
| design | VisibilityModifier | Variable 'id' must be private and have accessor methods. | 111 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 113 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 115 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 121 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 123 | |
| sizes | LineLength | Line is longer than 80 characters (found 304). | 125 | |
| sizes | ParameterNumber | More than 7 parameters (found 13). | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'refid'. | 125 | |
| coding | HiddenField | 'seller' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'seller'. | 125 | |
| coding | HiddenField | 'title' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'title'. | 125 | |
| coding | HiddenField | 'category' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'category'. | 125 | |
| coding | HiddenField | 'description' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'description'. | 125 | |
| coding | HiddenField | 'startTime' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'startTime'. | 125 | |
| coding | HiddenField | 'endTime' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'endTime'. | 125 | |
| coding | HiddenField | 'askingPrice' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'askingPrice'. | 125 | |
| coding | HiddenField | 'bid' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'bid'. | 125 | |
| coding | HiddenField | 'purchasePrice' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'purchasePrice'. | 125 | |
| coding | HiddenField | 'buyer' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'buyer'. | 125 | |
| coding | HiddenField | 'shipTo' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'shipTo'. | 125 | |
| coding | HiddenField | 'id' hides a field. | 125 | |
| javadoc | JavadocMethod | Expected @param tag for 'id'. | 125 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 143 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 147 | |
| design | DesignForExtension | Method 'getSeller' is not designed for extension - needs to be abstract, final or empty. | 149 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 155 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 159 | |
| design | DesignForExtension | Method 'setSeller' is not designed for extension - needs to be abstract, final or empty. | 161 | |
| misc | FinalParameters | Parameter value should be final. | 161 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 167 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 171 | |
| design | DesignForExtension | Method 'getTitle' is not designed for extension - needs to be abstract, final or empty. | 173 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 179 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 183 | |
| design | DesignForExtension | Method 'setTitle' is not designed for extension - needs to be abstract, final or empty. | 185 | |
| misc | FinalParameters | Parameter value should be final. | 185 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 191 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 195 | |
| design | DesignForExtension | Method 'getCategory' is not designed for extension - needs to be abstract, final or empty. | 197 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 203 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 207 | |
| design | DesignForExtension | Method 'setCategory' is not designed for extension - needs to be abstract, final or empty. | 209 | |
| misc | FinalParameters | Parameter value should be final. | 209 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 215 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 219 | |
| design | DesignForExtension | Method 'getDescription' is not designed for extension - needs to be abstract, final or empty. | 221 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 227 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 231 | |
| design | DesignForExtension | Method 'setDescription' is not designed for extension - needs to be abstract, final or empty. | 233 | |
| misc | FinalParameters | Parameter value should be final. | 233 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 239 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 243 | |
| design | DesignForExtension | Method 'getStartTime' is not designed for extension - needs to be abstract, final or empty. | 245 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 251 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 255 | |
| design | DesignForExtension | Method 'setStartTime' is not designed for extension - needs to be abstract, final or empty. | 257 | |
| misc | FinalParameters | Parameter value should be final. | 257 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 263 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 267 | |
| design | DesignForExtension | Method 'getEndTime' is not designed for extension - needs to be abstract, final or empty. | 269 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 275 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 279 | |
| design | DesignForExtension | Method 'setEndTime' is not designed for extension - needs to be abstract, final or empty. | 281 | |
| misc | FinalParameters | Parameter value should be final. | 281 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 287 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 291 | |
| design | DesignForExtension | Method 'getAskingPrice' is not designed for extension - needs to be abstract, final or empty. | 293 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 299 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 303 | |
| design | DesignForExtension | Method 'setAskingPrice' is not designed for extension - needs to be abstract, final or empty. | 305 | |
| misc | FinalParameters | Parameter value should be final. | 305 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 311 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 317 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 323 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 324 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 328 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 329 | |
| javadoc | JavadocMethod | Expected an @return tag. | 331 | |
| design | DesignForExtension | Method 'getBid' is not designed for extension - needs to be abstract, final or empty. | 331 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 340 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 344 | |
| design | DesignForExtension | Method 'getPurchasePrice' is not designed for extension - needs to be abstract, final or empty. | 346 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 352 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 356 | |
| design | DesignForExtension | Method 'setPurchasePrice' is not designed for extension - needs to be abstract, final or empty. | 358 | |
| misc | FinalParameters | Parameter value should be final. | 358 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 364 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 368 | |
| design | DesignForExtension | Method 'getBuyer' is not designed for extension - needs to be abstract, final or empty. | 370 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 376 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 380 | |
| design | DesignForExtension | Method 'setBuyer' is not designed for extension - needs to be abstract, final or empty. | 382 | |
| misc | FinalParameters | Parameter value should be final. | 382 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 388 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 392 | |
| design | DesignForExtension | Method 'getShipTo' is not designed for extension - needs to be abstract, final or empty. | 394 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 400 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 404 | |
| design | DesignForExtension | Method 'setShipTo' is not designed for extension - needs to be abstract, final or empty. | 406 | |
| misc | FinalParameters | Parameter value should be final. | 406 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 412 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 416 | |
| design | DesignForExtension | Method 'getId' is not designed for extension - needs to be abstract, final or empty. | 418 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 424 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 428 | |
| design | DesignForExtension | Method 'setId' is not designed for extension - needs to be abstract, final or empty. | 430 | |
| misc | FinalParameters | Parameter value should be final. | 430 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 25 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 26 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 27 | |
| sizes | LineLength | Line is longer than 80 characters (found 89). | 33 | |
| sizes | LineLength | Line is longer than 80 characters (found 87). | 34 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 35 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 36 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 38 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 43 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 44 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 56 | |
| design | VisibilityModifier | Variable 'bidTime' must be private and have accessor methods. | 59 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 60 | |
| design | VisibilityModifier | Variable 'amount' must be private and have accessor methods. | 63 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 64 | |
| design | VisibilityModifier | Variable 'item' must be private and have accessor methods. | 67 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 68 | |
| design | VisibilityModifier | Variable 'bidder' must be private and have accessor methods. | 71 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 72 | |
| design | VisibilityModifier | Variable 'id' must be private and have accessor methods. | 75 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 77 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 79 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 85 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 87 | |
| sizes | LineLength | Line is longer than 80 characters (found 114). | 89 | |
| coding | HiddenField | 'bidTime' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'bidTime'. | 89 | |
| coding | HiddenField | 'amount' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'amount'. | 89 | |
| coding | HiddenField | 'item' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'item'. | 89 | |
| coding | HiddenField | 'bidder' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'bidder'. | 89 | |
| coding | HiddenField | 'id' hides a field. | 89 | |
| javadoc | JavadocMethod | Expected @param tag for 'id'. | 89 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 99 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 103 | |
| design | DesignForExtension | Method 'getBidTime' is not designed for extension - needs to be abstract, final or empty. | 105 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 111 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 115 | |
| design | DesignForExtension | Method 'setBidTime' is not designed for extension - needs to be abstract, final or empty. | 117 | |
| misc | FinalParameters | Parameter value should be final. | 117 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 123 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 127 | |
| design | DesignForExtension | Method 'getAmount' is not designed for extension - needs to be abstract, final or empty. | 129 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 135 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 139 | |
| design | DesignForExtension | Method 'setAmount' is not designed for extension - needs to be abstract, final or empty. | 141 | |
| misc | FinalParameters | Parameter value should be final. | 141 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 147 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 151 | |
| design | DesignForExtension | Method 'getItem' is not designed for extension - needs to be abstract, final or empty. | 153 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 159 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 163 | |
| design | DesignForExtension | Method 'setItem' is not designed for extension - needs to be abstract, final or empty. | 165 | |
| misc | FinalParameters | Parameter value should be final. | 165 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 171 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 175 | |
| design | DesignForExtension | Method 'getBidder' is not designed for extension - needs to be abstract, final or empty. | 177 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 183 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 187 | |
| design | DesignForExtension | Method 'setBidder' is not designed for extension - needs to be abstract, final or empty. | 189 | |
| misc | FinalParameters | Parameter value should be final. | 189 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 195 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 199 | |
| design | DesignForExtension | Method 'getId' is not designed for extension - needs to be abstract, final or empty. | 201 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 207 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 211 | |
| design | DesignForExtension | Method 'setId' is not designed for extension - needs to be abstract, final or empty. | 213 | |
| misc | FinalParameters | Parameter value should be final. | 213 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 22 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 23 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 24 | |
| sizes | LineLength | Line is longer than 80 characters (found 111). | 30 | |
| sizes | LineLength | Line is longer than 80 characters (found 111). | 31 | |
| sizes | LineLength | Line is longer than 80 characters (found 111). | 32 | |
| sizes | LineLength | Line is longer than 80 characters (found 109). | 33 | |
| sizes | LineLength | Line is longer than 80 characters (found 107). | 34 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 40 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 41 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 54 | |
| design | VisibilityModifier | Variable 'address' must be private and have accessor methods. | 55 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 56 | |
| design | VisibilityModifier | Variable 'account' must be private and have accessor methods. | 57 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 58 | |
| design | VisibilityModifier | Variable 'auction' must be private and have accessor methods. | 59 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 60 | |
| design | VisibilityModifier | Variable 'image' must be private and have accessor methods. | 61 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 62 | |
| design | VisibilityModifier | Variable 'bid' must be private and have accessor methods. | 63 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 65 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 67 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 73 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 75 | |
| sizes | LineLength | Line is longer than 80 characters (found 152). | 77 | |
| coding | HiddenField | 'address' hides a field. | 77 | |
| javadoc | JavadocMethod | Expected @param tag for 'address'. | 77 | |
| coding | HiddenField | 'account' hides a field. | 77 | |
| javadoc | JavadocMethod | Expected @param tag for 'account'. | 77 | |
| coding | HiddenField | 'auction' hides a field. | 77 | |
| javadoc | JavadocMethod | Expected @param tag for 'auction'. | 77 | |
| coding | HiddenField | 'image' hides a field. | 77 | |
| javadoc | JavadocMethod | Expected @param tag for 'image'. | 77 | |
| coding | HiddenField | 'bid' hides a field. | 77 | |
| javadoc | JavadocMethod | Expected @param tag for 'bid'. | 77 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 87 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 92 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 93 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 99 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 100 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 104 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 105 | |
| javadoc | JavadocMethod | Expected an @return tag. | 107 | |
| design | DesignForExtension | Method 'getAddress' is not designed for extension - needs to be abstract, final or empty. | 107 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 116 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 121 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 122 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 128 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 129 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 133 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 134 | |
| javadoc | JavadocMethod | Expected an @return tag. | 136 | |
| design | DesignForExtension | Method 'getAccount' is not designed for extension - needs to be abstract, final or empty. | 136 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 145 | |
| sizes | LineLength | Line is longer than 80 characters (found 83). | 150 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 151 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 157 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 158 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 162 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 163 | |
| javadoc | JavadocMethod | Expected an @return tag. | 165 | |
| design | DesignForExtension | Method 'getAuction' is not designed for extension - needs to be abstract, final or empty. | 165 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 174 | |
| sizes | LineLength | Line is longer than 80 characters (found 81). | 179 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 180 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 186 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 187 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 191 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 192 | |
| javadoc | JavadocMethod | Expected an @return tag. | 194 | |
| design | DesignForExtension | Method 'getImage' is not designed for extension - needs to be abstract, final or empty. | 194 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 203 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 209 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 215 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 216 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 220 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 221 | |
| javadoc | JavadocMethod | Expected an @return tag. | 223 | |
| design | DesignForExtension | Method 'getBid' is not designed for extension - needs to be abstract, final or empty. | 223 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 24 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 25 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 26 | |
| sizes | LineLength | Line is longer than 80 characters (found 90). | 32 | |
| sizes | LineLength | Line is longer than 80 characters (found 91). | 33 | |
| sizes | LineLength | Line is longer than 80 characters (found 84). | 35 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 40 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 41 | |
| blocks | LeftCurly | '{' should be on the previous line. | 51 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 53 | |
| design | VisibilityModifier | Variable 'auctionRef' must be private and have accessor methods. | 56 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 57 | |
| design | VisibilityModifier | Variable 'image' must be private and have accessor methods. | 58 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 59 | |
| design | VisibilityModifier | Variable 'id' must be private and have accessor methods. | 62 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 64 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 66 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 72 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 74 | |
| sizes | LineLength | Line is longer than 80 characters (found 101). | 76 | |
| javadoc | JavadocMethod | Expected @param tag for 'refid'. | 76 | |
| coding | HiddenField | 'auctionRef' hides a field. | 76 | |
| javadoc | JavadocMethod | Expected @param tag for 'auctionRef'. | 76 | |
| coding | HiddenField | 'image' hides a field. | 76 | |
| javadoc | JavadocMethod | Expected @param tag for 'image'. | 76 | |
| coding | HiddenField | 'id' hides a field. | 76 | |
| javadoc | JavadocMethod | Expected @param tag for 'id'. | 76 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 85 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 89 | |
| design | DesignForExtension | Method 'getAuctionRef' is not designed for extension - needs to be abstract, final or empty. | 91 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 97 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 101 | |
| design | DesignForExtension | Method 'setAuctionRef' is not designed for extension - needs to be abstract, final or empty. | 103 | |
| misc | FinalParameters | Parameter value should be final. | 103 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 109 | |
| design | DesignForExtension | Method 'getImage' is not designed for extension - needs to be abstract, final or empty. | 114 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 120 | |
| design | DesignForExtension | Method 'setImage' is not designed for extension - needs to be abstract, final or empty. | 125 | |
| misc | FinalParameters | Parameter value should be final. | 125 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 131 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 135 | |
| design | DesignForExtension | Method 'getId' is not designed for extension - needs to be abstract, final or empty. | 137 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 143 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 147 | |
| design | DesignForExtension | Method 'setId' is not designed for extension - needs to be abstract, final or empty. | 149 | |
| misc | FinalParameters | Parameter value should be final. | 149 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 15 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 16 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 17 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 18 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 19 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 20 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 21 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 22 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 23 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 24 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 26 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 32 | |
| sizes | LineLength | Line is longer than 80 characters (found 139). | 33 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 34 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 39 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 41 | |
| javadoc | JavadocMethod | Expected an @return tag. | 43 | |
| design | DesignForExtension | Method 'createReferencedType' is not designed for extension - needs to be abstract, final or empty. | 43 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 47 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 49 | |
| javadoc | JavadocMethod | Expected an @return tag. | 51 | |
| design | DesignForExtension | Method 'createAddress' is not designed for extension - needs to be abstract, final or empty. | 51 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 55 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 57 | |
| javadoc | JavadocMethod | Expected an @return tag. | 59 | |
| design | DesignForExtension | Method 'createESales' is not designed for extension - needs to be abstract, final or empty. | 59 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 63 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 65 | |
| javadoc | JavadocMethod | Expected an @return tag. | 67 | |
| design | DesignForExtension | Method 'createBid' is not designed for extension - needs to be abstract, final or empty. | 67 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 71 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 73 | |
| javadoc | JavadocMethod | Expected an @return tag. | 75 | |
| design | DesignForExtension | Method 'createAccount' is not designed for extension - needs to be abstract, final or empty. | 75 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 79 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 81 | |
| javadoc | JavadocMethod | Expected an @return tag. | 83 | |
| design | DesignForExtension | Method 'createImage' is not designed for extension - needs to be abstract, final or empty. | 83 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 87 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 89 | |
| javadoc | JavadocMethod | Expected an @return tag. | 91 | |
| design | DesignForExtension | Method 'createAuction' is not designed for extension - needs to be abstract, final or empty. | 91 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 24 | |
| sizes | LineLength | Line is longer than 80 characters (found 95). | 25 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 26 | |
| sizes | LineLength | Line is longer than 80 characters (found 82). | 31 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 36 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 37 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 49 | |
| design | VisibilityModifier | Variable 'refid' must be private and have accessor methods. | 53 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 55 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 57 | |
| javadoc | JavadocStyle | First sentence should end with a period. | 63 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 65 | |
| coding | HiddenField | 'refid' hides a field. | 67 | |
| javadoc | JavadocMethod | Expected @param tag for 'refid'. | 67 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 73 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 77 | |
| design | DesignForExtension | Method 'getRefid' is not designed for extension - needs to be abstract, final or empty. | 79 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 85 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 89 | |
| design | DesignForExtension | Method 'setRefid' is not designed for extension - needs to be abstract, final or empty. | 91 | |
| misc | FinalParameters | Parameter value should be final. | 91 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 2 | |
| sizes | LineLength | Line is longer than 80 characters (found 126). | 2 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 3 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 4 | |
| sizes | LineLength | Line is longer than 80 characters (found 88). | 4 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 5 | |
| sizes | LineLength | Line is longer than 80 characters (found 87). | 8 | |
| javadoc | JavadocStyle | Missing a Javadoc comment. | 9 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocType | Missing a Javadoc comment. | 9 | |
| design | HideUtilityClassConstructor | Utility classes should not have a public or default constructor. | 9 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 10 | |
| misc | FinalParameters | Parameter s should be final. | 10 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 11 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 13 | |
| misc | FinalParameters | Parameter dt should be final. | 13 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| regexp | RegexpSingleline | Line has trailing spaces. | 27 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 29 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 34 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 36 | |
| design | VisibilityModifier | Variable 'xmlif' must be private and have accessor methods. | 36 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 37 | |
| design | VisibilityModifier | Variable 'um' must be private and have accessor methods. | 37 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 38 | |
| design | VisibilityModifier | Variable 'xmlr' must be private and have accessor methods. | 38 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 39 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 40 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 44 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 50 | |
| misc | FinalParameters | Parameter rootType should be final. | 50 | |
| misc | FinalParameters | Parameter is should be final. | 50 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 51 | |
| javadoc | JavadocMethod | Expected @throws tag for 'JAXBException'. | 52 | |
| javadoc | JavadocMethod | Expected @throws tag for 'XMLStreamException'. | 52 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 62 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 64 | |
| sizes | LineLength | Line is longer than 80 characters (found 107). | 66 | |
| misc | FinalParameters | Parameter targetType should be final. | 66 | |
| blocks | NeedBraces | 'if' construct must use '{}'s. | 69 | |
| whitespace | WhitespaceAround | 'if' is not followed by whitespace. | 69 | |
| whitespace | WhitespaceAround | '==' is not preceded with whitespace. | 69 | |
| whitespace | WhitespaceAround | '==' is not followed by whitespace. | 69 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 74 | |
| sizes | LineLength | Line is longer than 80 characters (found 85). | 76 | |
| misc | FinalParameters | Parameter id should be final. | 76 | |
| misc | FinalParameters | Parameter obj should be final. | 76 | |
| blocks | NeedBraces | 'if' construct must use '{}'s. | 77 | |
| whitespace | WhitespaceAround | 'if' is not followed by whitespace. | 77 | |
| whitespace | WhitespaceAround | '==' is not preceded with whitespace. | 77 | |
| whitespace | WhitespaceAround | '==' is not followed by whitespace. | 77 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 77 | |
| whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 78 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 81 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 83 | |
| design | DesignForExtension | Method 'setSchema' is not designed for extension - needs to be abstract, final or empty. | 84 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 84 | |
| misc | FinalParameters | Parameter schema should be final. | 84 | |
| sizes | LineLength | Line is longer than 80 characters (found 89). | 85 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 89 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 90 | |
| misc | FinalParameters | Parameter elements should be final. | 90 | |
| misc | ArrayTypeStyle | Array brackets at illegal position. | 90 | |
| misc | FinalParameters | Parameter localName should be final. | 90 | |
| whitespace | WhitespaceAround | 'for' is not followed by whitespace. | 91 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 98 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 102 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 104 | |
| javadoc | JavadocMethod | Expected an @return tag. | 110 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 110 | |
| design | DesignForExtension | Method 'getObject' is not designed for extension - needs to be abstract, final or empty. | 110 | |
| misc | FinalParameters | Parameter elements should be final. | 110 | |
| javadoc | JavadocMethod | Expected @param tag for 'elements'. | 110 | |
| javadoc | JavadocMethod | Expected @throws tag for 'XMLStreamException'. | 111 | |
| javadoc | JavadocMethod | Expected @throws tag for 'JAXBException'. | 111 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 114 | |
| whitespace | OperatorWrap | '&&' should be on a new line. | 114 | |
| whitespace | OperatorWrap | '?' should be on a new line. | 117 | |
| coding | AvoidInlineConditionals | Avoid inline conditionals. | 117 | |
| whitespace | WhitespaceAfter | 'cast' is not followed by whitespace. | 118 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 122 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 124 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 125 |
| Severity | Category | Rule | Message | Line |
|---|---|---|---|---|
| javadoc | JavadocPackage | Missing package-info.java file. | ||
| javadoc | JavadocType | Missing a Javadoc comment. | 12 | |
| whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 13 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 13 | |
| design | VisibilityModifier | Variable 'addressId' must be private and have accessor methods. | 13 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 14 | |
| design | VisibilityModifier | Variable 'auctionId' must be private and have accessor methods. | 14 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 15 | |
| design | VisibilityModifier | Variable 'bidId' must be private and have accessor methods. | 15 | |
| javadoc | JavadocVariable | Missing a Javadoc comment. | 16 | |
| design | VisibilityModifier | Variable 'accountId' must be private and have accessor methods. | 16 | |
| design | DesignForExtension | Method 'createSales' is not designed for extension - needs to be abstract, final or empty. | 17 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 17 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 19 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 26 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 29 | |
| whitespace | WhitespaceAfter | 'cast' is not followed by whitespace. | 32 | |
| design | DesignForExtension | Method 'createAuction' is not designed for extension - needs to be abstract, final or empty. | 43 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 43 | |
| misc | FinalParameters | Parameter seller should be final. | 43 | |
| misc | FinalParameters | Parameter bidder should be final. | 43 | |
| whitespace | WhitespaceAround | '+' is not preceded with whitespace. | 46 | |
| whitespace | WhitespaceAround | '+' is not followed by whitespace. | 46 | |
| whitespace | WhitespaceAround | '-' is not preceded with whitespace. | 52 | |
| whitespace | WhitespaceAround | '-' is not followed by whitespace. | 52 | |
| coding | MagicNumber | '3' is a magic number. | 52 | |
| whitespace | WhitespaceAround | '*' is not preceded with whitespace. | 52 | |
| whitespace | WhitespaceAround | '*' is not followed by whitespace. | 52 | |
| coding | MagicNumber | '3600' is a magic number. | 52 | |
| whitespace | WhitespaceAround | '*' is not preceded with whitespace. | 52 | |
| whitespace | WhitespaceAround | '*' is not followed by whitespace. | 52 | |
| coding | MagicNumber | '1000' is a magic number. | 52 | |
| design | DesignForExtension | Method 'createAddress1' is not designed for extension - needs to be abstract, final or empty. | 68 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 68 | |
| misc | FinalParameters | Parameter addressee should be final. | 68 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 80 | |
| design | DesignForExtension | Method 'createAccount' is not designed for extension - needs to be abstract, final or empty. | 81 | |
| javadoc | JavadocMethod | Missing a Javadoc comment. | 81 | |
| misc | FinalParameters | Parameter firstName should be final. | 82 | |
| misc | FinalParameters | Parameter middleName should be final. | 82 | |
| misc | FinalParameters | Parameter lastName should be final. | 82 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 91 | |
| whitespace | OperatorWrap | '+' should be on a new line. | 91 | |
| whitespace | OperatorWrap | '+' should be on a new line. | 92 | |
| regexp | RegexpSingleline | Line has trailing spaces. | 95 |