The following document contains the results of Checkstyle 9.3 with sun_checks.xml ruleset.
Files | src="images/icon_info_sml.gif" Info | src="images/icon_warning_sml.gif" Warnings | src="images/icon_error_sml.gif" Errors |
---|---|---|---|
61 | 0 | 0 | 2079 |
Category | Rule | Violations | Severity |
---|---|---|---|
blocks | LeftCurly | 1 | src="images/icon_error_sml.gif" Error |
NeedBraces | 9 | src="images/icon_error_sml.gif" Error | |
RightCurly | 8 | src="images/icon_error_sml.gif" Error | |
coding | HiddenField | 40 | src="images/icon_error_sml.gif" Error |
MagicNumber | 28 | src="images/icon_error_sml.gif" Error | |
design | DesignForExtension | 171 | src="images/icon_error_sml.gif" Error |
HideUtilityClassConstructor | 1 | src="images/icon_error_sml.gif" Error | |
imports | AvoidStarImport | 21 | src="images/icon_error_sml.gif" Error |
javadoc | JavadocPackage | 10 | src="images/icon_error_sml.gif" Error |
JavadocStyle | 14 | src="images/icon_error_sml.gif" Error | |
JavadocType | 72 | src="images/icon_error_sml.gif" Error | |
JavadocVariable | 107 | src="images/icon_error_sml.gif" Error | |
MissingJavadocMethod | 187 | src="images/icon_error_sml.gif" Error | |
misc | FinalParameters | 239 | src="images/icon_error_sml.gif" Error |
NewlineAtEndOfFile | 18 | src="images/icon_error_sml.gif" Error | |
naming | ConstantName | 1 | src="images/icon_error_sml.gif" Error |
MethodName | 2 | src="images/icon_error_sml.gif" Error | |
ParameterName | 8 | src="images/icon_error_sml.gif" Error | |
sizes | LineLength
|
307 | src="images/icon_error_sml.gif" Error |
whitespace | FileTabCharacter | 1 | src="images/icon_error_sml.gif" Error |
MethodParamPad | 1 | src="images/icon_error_sml.gif" Error | |
ParenPad | 824 | src="images/icon_error_sml.gif" Error | |
WhitespaceAfter | 2 | src="images/icon_error_sml.gif" Error | |
WhitespaceAround | 7 | src="images/icon_error_sml.gif" Error |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | design | HideUtilityClassConstructor | Utility classes should not have a public or default constructor. | 8 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 100). | 11 |
src="images/icon_error_sml.gif" Error | whitespace | FileTabCharacter | File contains tab characters (this is the first instance). | 11 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | naming | ConstantName | Name 'logger' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. | 11 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter args should be final. | 13 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 14 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ApplicationConfig' looks like designed for extension (can be subclassed), but the method 'authenticationProvider' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationConfig' final or making the method 'authenticationProvider' static/final/abstract/empty, or adding allowed annotation for the method. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 22 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ApplicationConfig' looks like designed for extension (can be subclassed), but the method 'manager' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationConfig' final or making the method 'manager' static/final/abstract/empty, or adding allowed annotation for the method. | 28 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 28 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 95). | 29 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter config should be final. | 29 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ApplicationConfig' looks like designed for extension (can be subclassed), but the method 'passwordEncoder' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ApplicationConfig' final or making the method 'passwordEncoder' static/final/abstract/empty, or adding allowed annotation for the method. | 33 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 33 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 22 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtAuthenticationFilter' looks like designed for extension (can be subclassed), but the method 'doFilterInternal' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtAuthenticationFilter' final or making the method 'doFilterInternal' static/final/abstract/empty, or adding allowed annotation for the method. | 25 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter request should be final. | 26 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter response should be final. | 27 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter filterChain should be final. | 28 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '7' is a magic number. | 38 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 40 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 42 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 97). | 49 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 21 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtService' looks like designed for extension (can be subclassed), but the method 'extractUsername' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtService' final or making the method 'extractUsername' static/final/abstract/empty, or adding allowed annotation for the method. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter token should be final. | 23 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 27 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtService' looks like designed for extension (can be subclassed), but the method 'extractClaims' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtService' final or making the method 'extractClaims' static/final/abstract/empty, or adding allowed annotation for the method. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter token should be final. | 27 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter claimsResolver should be final. | 27 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 32 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtService' looks like designed for extension (can be subclassed), but the method 'generateToken' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtService' final or making the method 'generateToken' static/final/abstract/empty, or adding allowed annotation for the method. | 32 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 32 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userDetails should be final. | 32 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter pubID should be final. | 32 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter name should be final. | 32 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtService' looks like designed for extension (can be subclassed), but the method 'generateToken' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtService' final or making the method 'generateToken' static/final/abstract/empty, or adding allowed annotation for the method. | 37 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 37 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter extraClaims should be final. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userDetails should be final. | 39 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter pubID should be final. | 39 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter name should be final. | 39 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 43 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 107). | 49 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtService' looks like designed for extension (can be subclassed), but the method 'isTokenValid' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtService' final or making the method 'isTokenValid' static/final/abstract/empty, or adding allowed annotation for the method. | 55 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 55 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter token should be final. | 55 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userDetails should be final. | 55 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 57 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'JwtService' looks like designed for extension (can be subclassed), but the method 'isTokenExpired' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JwtService' final or making the method 'isTokenExpired' static/final/abstract/empty, or adding allowed annotation for the method. | 60 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 60 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter token should be final. | 60 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter token should be final. | 64 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter token should be final. | 68 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 140). | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAfter | ',' is not followed by whitespace. | 23 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 24 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'SecurityConfiguration' looks like designed for extension (can be subclassed), but the method 'securityFilterChain' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'SecurityConfiguration' final or making the method 'securityFilterChain' static/final/abstract/empty, or adding allowed annotation for the method. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 88). | 27 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter http should be final. | 27 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 108). | 36 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '->' is not preceded with whitespace. | 36 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 38 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.springframework.web.bind.annotation.*. | 11 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameService should be final. | 28 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameService' hides a field. | 28 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameMapper should be final. | 29 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameMapper' hides a field. | 29 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'getAllBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'getAllBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 34 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 34 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 39 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'getFavoriteBoardGamesByUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'getFavoriteBoardGamesByUser' static/final/abstract/empty, or adding allowed annotation for the method. | 43 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 43 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 106). | 44 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter uuids should be final. | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 101). | 45 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 95). | 46 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'getBoardGameById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'getBoardGameById' static/final/abstract/empty, or adding allowed annotation for the method. | 51 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 51 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 52 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 52 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 54 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 97). | 56 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'addNewBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'addNewBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 60 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 60 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter board should be final. | 61 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be alone on a line. | 67 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'deleteBoardGameById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'deleteBoardGameById' static/final/abstract/empty, or adding allowed annotation for the method. | 69 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 69 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 70 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 70 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'findBoardGamesByName' static/final/abstract/empty, or adding allowed annotation for the method. | 75 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 75 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 76 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameName should be final. | 76 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 77 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 116). | 80 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'findBoardGamesByPublisher' static/final/abstract/empty, or adding allowed annotation for the method. | 83 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 83 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 84 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 84 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 85 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 117). | 88 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'findBoardGamesByCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 92 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 92 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 101). | 93 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 93 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 108). | 97 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'sortBy' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'sortBy' static/final/abstract/empty, or adding allowed annotation for the method. | 101 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 101 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 102 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter sort should be final. | 102 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 90). | 106 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'findBoardGamesByDescription' static/final/abstract/empty, or adding allowed annotation for the method. | 110 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 110 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 111 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter desc should be final. | 111 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 107). | 115 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesLesserThanOrEqualsByMaxPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'findAllBoardGamesLesserThanOrEqualsByMaxPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 119 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 119 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 117). | 120 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter max should be final. | 120 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 124 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameController' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesGreaterThanOrEqualsByMinPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameController' final or making the method 'findAllBoardGamesGreaterThanOrEqualsByMinPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 128 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 128 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 118). | 129 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter min should be final. | 129 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 133 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.springframework.web.bind.annotation.*. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryService should be final. | 22 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'categoryService' hides a field. | 22 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryController' looks like designed for extension (can be subclassed), but the method 'getAllCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryController' final or making the method 'getAllCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 31 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryController' looks like designed for extension (can be subclassed), but the method 'getCategoryById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryController' final or making the method 'getCategoryById' static/final/abstract/empty, or adding allowed annotation for the method. | 35 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 36 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 38 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 40 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryController' looks like designed for extension (can be subclassed), but the method 'addNewCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryController' final or making the method 'addNewCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 44 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 45 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter board should be final. | 45 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 46 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryController' looks like designed for extension (can be subclassed), but the method 'deleteCategoryById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryController' final or making the method 'deleteCategoryById' static/final/abstract/empty, or adding allowed annotation for the method. | 49 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 49 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 50 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 50 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.springframework.web.bind.annotation.*. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter service should be final. | 21 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'service' hides a field. | 21 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherController' looks like designed for extension (can be subclassed), but the method 'getAllPublishers' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherController' final or making the method 'getAllPublishers' static/final/abstract/empty, or adding allowed annotation for the method. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherController' looks like designed for extension (can be subclassed), but the method 'getPublisherById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherController' final or making the method 'getPublisherById' static/final/abstract/empty, or adding allowed annotation for the method. | 34 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 34 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 35 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 37 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherController' looks like designed for extension (can be subclassed), but the method 'updatePublisherById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherController' final or making the method 'updatePublisherById' static/final/abstract/empty, or adding allowed annotation for the method. | 43 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 43 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 44 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter body should be final. | 44 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 44 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherController' looks like designed for extension (can be subclassed), but the method 'addNewPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherController' final or making the method 'addNewPublisher' static/final/abstract/empty, or adding allowed annotation for the method. | 48 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 48 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 90). | 49 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter board should be final. | 49 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherController' looks like designed for extension (can be subclassed), but the method 'deletePublisherById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherController' final or making the method 'deletePublisherById' static/final/abstract/empty, or adding allowed annotation for the method. | 53 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 53 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 54 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 54 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.springframework.web.bind.annotation.*. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingService should be final. | 22 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'ratingService' hides a field. | 22 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingMapper should be final. | 23 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'ratingMapper' hides a field. | 23 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingController' looks like designed for extension (can be subclassed), but the method 'getAllRatings' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingController' final or making the method 'getAllRatings' static/final/abstract/empty, or adding allowed annotation for the method. | 28 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 28 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingController' looks like designed for extension (can be subclassed), but the method 'checkRating' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingController' final or making the method 'checkRating' static/final/abstract/empty, or adding allowed annotation for the method. | 37 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 37 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserPublicID should be final. | 38 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 116). | 39 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGamePublicID should be final. | 39 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 40 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 145). | 43 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingController' looks like designed for extension (can be subclassed), but the method 'addNewRating' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingController' final or making the method 'addNewRating' static/final/abstract/empty, or adding allowed annotation for the method. | 47 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 48 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 48 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 49 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.springframework.web.bind.annotation.*. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewService should be final. | 22 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'reviewService' hides a field. | 22 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewController' looks like designed for extension (can be subclassed), but the method 'getAllReviews' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewController' final or making the method 'getAllReviews' static/final/abstract/empty, or adding allowed annotation for the method. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewController' looks like designed for extension (can be subclassed), but the method 'getReviewsByBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewController' final or making the method 'getReviewsByBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 35 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 35 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 89). | 36 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 36 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 38 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 100). | 40 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewController' looks like designed for extension (can be subclassed), but the method 'addNewReview' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewController' final or making the method 'addNewReview' static/final/abstract/empty, or adding allowed annotation for the method. | 44 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 45 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter board should be final. | 45 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 46 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewController' looks like designed for extension (can be subclassed), but the method 'deleteReviewById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewController' final or making the method 'deleteReviewById' static/final/abstract/empty, or adding allowed annotation for the method. | 49 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 49 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 50 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.springframework.web.bind.annotation.*. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userService should be final. | 20 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'userService' hides a field. | 20 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'getAllUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'getAllUser' static/final/abstract/empty, or adding allowed annotation for the method. | 24 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 24 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'getUserById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'getUserById' static/final/abstract/empty, or adding allowed annotation for the method. | 33 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 33 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 34 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 38 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'updateUserById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'updateUserById' static/final/abstract/empty, or adding allowed annotation for the method. | 42 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 42 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 107). | 43 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 43 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserDto should be final. | 43 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 50 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'deleteBGFromUserFavorites' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'deleteBGFromUserFavorites' static/final/abstract/empty, or adding allowed annotation for the method. | 59 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 59 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 112). | 60 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 60 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter bgID should be final. | 60 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 67 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 69 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'registerNewUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'registerNewUser' static/final/abstract/empty, or adding allowed annotation for the method. | 76 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 76 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 77 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter user should be final. | 77 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'authenticateUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'authenticateUser' static/final/abstract/empty, or adding allowed annotation for the method. | 86 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 86 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 87 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter user should be final. | 87 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 88 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserController' looks like designed for extension (can be subclassed), but the method 'deleteUserById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserController' final or making the method 'deleteUserById' static/final/abstract/empty, or adding allowed annotation for the method. | 91 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 91 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 92 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 22 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 24 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter vAllBoardGameService should be final. | 25 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'vAllBoardGameService' hides a field. | 25 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'getAllVGames' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'getAllVGames' static/final/abstract/empty, or adding allowed annotation for the method. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 34 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesByName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findVAllBoardGamesByName' static/final/abstract/empty, or adding allowed annotation for the method. | 38 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 38 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 112). | 39 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameName should be final. | 39 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 40 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 124). | 43 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesByPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findVAllBoardGamesByPublisher' static/final/abstract/empty, or adding allowed annotation for the method. | 47 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 117). | 48 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisherName should be final. | 48 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 89). | 49 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 121). | 52 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesByCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findVAllBoardGamesByCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 56 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 56 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 57 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter category should be final. | 57 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 58 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 116). | 61 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'sortBy' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'sortBy' static/final/abstract/empty, or adding allowed annotation for the method. | 65 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 65 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 66 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter sort should be final. | 66 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 94). | 70 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesByDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findAllBoardGamesByDescription' static/final/abstract/empty, or adding allowed annotation for the method. | 74 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 74 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 109). | 75 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter desc should be final. | 75 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 76 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 115). | 79 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesLesserThanOrEqualsByMaxPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findAllBoardGamesLesserThanOrEqualsByMaxPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 83 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 83 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 121). | 84 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter max should be final. | 84 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 85 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 114). | 88 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesGreaterThanOrEqualsByMinPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findAllBoardGamesGreaterThanOrEqualsByMinPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 92 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 92 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 122). | 93 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter min should be final. | 93 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 94 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 114). | 97 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameController' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesGreaterThanOrEqualsByRating' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameController' final or making the method 'findAllBoardGamesGreaterThanOrEqualsByRating' static/final/abstract/empty, or adding allowed annotation for the method. | 101 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 101 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 125). | 102 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 102 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 103 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 113). | 106 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 7 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 108). | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param email tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param favoriteBoardGamePublicIDS tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param name tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param password tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param reviews tag. | 10 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 88). | 11 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 12 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 89). | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 15 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 7 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param appUserPublicIDS tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param categories tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param gameName tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param maxPlayer tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param minPlayer tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param playTimeInMinutes tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publisherPublicID tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publisherPublisherName tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param ratings tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param recommendedAge tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param reviews tag. | 10 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 120). | 11 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 12 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 14 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 17 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param name tag. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 20 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 89). | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param ratingNumber tag. | 29 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 7 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param boardGames tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param name tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 10 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 11 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 12 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 116). | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param gameName tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param maxPlayer tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param minPlayer tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param playTimeInMinutes tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param rating tag. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param recommendedAge tag. | 15 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 112). | 16 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 7 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 120). | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param boardGames tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publisherName tag. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 11 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 116). | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param gameName tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param maxPlayer tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param minPlayer tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param playTimeInMinutes tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param rating tag. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param recommendedAge tag. | 14 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 112). | 15 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 6 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param appUserName tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param appUserPublicID tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param boardGameGameName tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param boardGamePublicID tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param ratingNumber tag. | 9 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 96). | 10 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 6 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param appUserName tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param appUserPublicID tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param boardGamePublicID tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicID tag. | 9 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 10 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 6 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 100). | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param averageRating tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param categories tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param description tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param gameName tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param maxPlayer tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param minPlayer tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param playTimeInMinutes tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publicId tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publisherName tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param publisherPublicId tag. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocType | Type Javadoc comment is missing @param recommendedAge tag. | 9 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 101). | 10 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 95). | 11 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ControllerExceptionHandler' looks like designed for extension (can be subclassed), but the method 'resourceNotFoundException' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ControllerExceptionHandler' final or making the method 'resourceNotFoundException' static/final/abstract/empty, or adding allowed annotation for the method. | 16 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 16 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 117). | 17 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ex should be final. | 17 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter request should be final. | 17 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ControllerExceptionHandler' looks like designed for extension (can be subclassed), but the method 'globalExceptionHandler' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ControllerExceptionHandler' final or making the method 'globalExceptionHandler' static/final/abstract/empty, or adding allowed annotation for the method. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 28 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ex should be final. | 28 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter request should be final. | 28 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 6 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 7 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 8 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 9 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 11 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter statusCode should be final. | 11 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'statusCode' hides a field. | 11 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter timestamp should be final. | 11 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'timestamp' hides a field. | 11 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter message should be final. | 11 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'message' hides a field. | 11 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter description should be final. | 11 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'description' hides a field. | 11 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ErrorMessage' looks like designed for extension (can be subclassed), but the method 'getStatusCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ErrorMessage' final or making the method 'getStatusCode' static/final/abstract/empty, or adding allowed annotation for the method. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ErrorMessage' looks like designed for extension (can be subclassed), but the method 'getTimestamp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ErrorMessage' final or making the method 'getTimestamp' static/final/abstract/empty, or adding allowed annotation for the method. | 22 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 22 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ErrorMessage' looks like designed for extension (can be subclassed), but the method 'getMessage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ErrorMessage' final or making the method 'getMessage' static/final/abstract/empty, or adding allowed annotation for the method. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ErrorMessage' looks like designed for extension (can be subclassed), but the method 'getDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ErrorMessage' final or making the method 'getDescription' static/final/abstract/empty, or adding allowed annotation for the method. | 30 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 30 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 7 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter msg should be final. | 7 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 6 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 12 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 14 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 16 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 152). | 21 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 24 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 24 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 25 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 103). | 27 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 28 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 15 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserDto should be final. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 22 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 22 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 34 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 34 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 39 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUser should be final. | 40 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 55 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 55 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 126). | 57 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 119). | 59 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 59 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 59 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 64 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserDto should be final. | 65 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUser should be final. | 65 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 71 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 71 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 74 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 74 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 79 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 79 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 82 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 82 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 83 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 83 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 86 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 86 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 92 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 92 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 96 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 96 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDto1ToReview' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'reviewDto1ToReview' static/final/abstract/empty, or adding allowed annotation for the method. | 101 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto1 should be final. | 101 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 102 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 102 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 109 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 109 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 114 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDto1SetToReviewSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'reviewDto1SetToReviewSet' static/final/abstract/empty, or adding allowed annotation for the method. | 114 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 114 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 115 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 115 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 119 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 119 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 120 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 120 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 121 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 121 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 121 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 121 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewToReviewDto1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'reviewToReviewDto1' static/final/abstract/empty, or adding allowed annotation for the method. | 127 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 127 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 128 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 128 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 94). | 138 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 138 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 138 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 143 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewSetToReviewDto1Set' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserMapperImpl' final or making the method 'reviewSetToReviewDto1Set' static/final/abstract/empty, or adding allowed annotation for the method. | 143 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 143 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 144 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 144 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 134). | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 148 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 148 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 149 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 149 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 150 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 150 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 150 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 150 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 5 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 7 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 9 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 15 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 20 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 27 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 28 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 18 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 23 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameDto should be final. | 24 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 25 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 25 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 33 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 33 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 34 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 34 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 35 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 35 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 36 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 36 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 38 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 38 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 39 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 39 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 40 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 40 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 40 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 40 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 40 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 43 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 43 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 44 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 44 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 49 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGame should be final. | 50 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 51 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 51 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 68 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 68 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 75 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 75 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 78 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 78 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 79 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 79 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 236). | 83 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 83 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 83 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 88 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 89 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameDto should be final. | 89 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGame should be final. | 89 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 95 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 95 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 101 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 101 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 102 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 102 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 104 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 104 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 106 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 106 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 107 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 107 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 90). | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 109 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 109 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 111 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 113 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 90). | 115 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 115 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 115 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 116 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 116 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 117 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 117 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 120 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 120 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 121 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 121 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 122 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 122 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 124 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 124 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 125 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 125 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 125 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 126 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 126 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 128 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 128 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 130 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 132 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 132 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 132 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 133 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 133 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 134 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 134 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 137 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 137 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 138 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 138 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 138 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 139 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 139 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 141 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 141 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 143 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 145 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 145 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 145 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 146 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 146 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 147 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 147 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 152 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 152 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameDtoToPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'boardGameDtoToPublisher' static/final/abstract/empty, or adding allowed annotation for the method. | 157 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameDto should be final. | 157 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 158 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 158 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 164 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 164 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 165 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 165 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 170 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'categoryDto1ToCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'categoryDto1ToCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 170 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryDto1 should be final. | 170 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 171 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 171 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 177 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 177 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 178 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 178 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 179 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 179 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 94). | 184 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'categoryDto1SetToCategorySet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'categoryDto1SetToCategorySet' static/final/abstract/empty, or adding allowed annotation for the method. | 184 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 184 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 185 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 185 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 108). | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 189 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 189 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 190 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 190 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 191 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 191 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 191 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 191 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDto1ToReview' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'reviewDto1ToReview' static/final/abstract/empty, or adding allowed annotation for the method. | 197 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto1 should be final. | 197 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 198 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 198 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 204 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 204 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 205 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 205 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 210 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDto1SetToReviewSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'reviewDto1SetToReviewSet' static/final/abstract/empty, or adding allowed annotation for the method. | 210 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 210 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 211 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 211 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 215 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 215 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 215 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 216 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 216 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 217 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 217 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 217 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 217 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingDtoToRating' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'ratingDtoToRating' static/final/abstract/empty, or adding allowed annotation for the method. | 223 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 223 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 224 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 224 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 230 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 230 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 235 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingDtoSetToRatingSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'ratingDtoSetToRatingSet' static/final/abstract/empty, or adding allowed annotation for the method. | 235 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 235 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 236 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 236 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 240 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 240 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 240 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 241 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 241 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 242 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 242 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 242 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 242 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGame should be final. | 248 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 249 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 249 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 253 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 253 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 257 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 257 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGame should be final. | 263 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 264 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 264 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 268 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 268 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 272 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 272 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 278 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'categoryToCategoryDto1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'categoryToCategoryDto1' static/final/abstract/empty, or adding allowed annotation for the method. | 278 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter category should be final. | 278 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 279 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 279 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 291 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 291 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 291 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 94). | 296 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'categorySetToCategoryDto1Set' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'categorySetToCategoryDto1Set' static/final/abstract/empty, or adding allowed annotation for the method. | 296 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 296 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 297 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 297 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 142). | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 301 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 301 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 301 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 302 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 302 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 303 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 303 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 303 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 303 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewToReviewDto1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'reviewToReviewDto1' static/final/abstract/empty, or adding allowed annotation for the method. | 309 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 309 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 310 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 310 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 320 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 320 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 320 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 325 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewSetToReviewDto1Set' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'reviewSetToReviewDto1Set' static/final/abstract/empty, or adding allowed annotation for the method. | 325 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 325 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 326 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 326 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 138). | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 330 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 330 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 330 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 331 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 331 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 332 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 332 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 332 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 332 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingToRatingDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'ratingToRatingDto' static/final/abstract/empty, or adding allowed annotation for the method. | 338 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 338 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 339 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 339 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 347 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 347 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 347 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 352 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingSetToRatingDtoSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'ratingSetToRatingDtoSet' static/final/abstract/empty, or adding allowed annotation for the method. | 352 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 352 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 353 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 353 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 136). | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 357 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 357 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 357 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 358 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 358 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 359 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 359 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 359 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 359 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 97). | 365 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameDtoToPublisher1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameMapperImpl' final or making the method 'boardGameDtoToPublisher1' static/final/abstract/empty, or adding allowed annotation for the method. | 365 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameDto should be final. | 365 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter mappingTarget should be final. | 365 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 366 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 366 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 370 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 370 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 371 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 371 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 371 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 373 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 373 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 374 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 374 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 5 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 7 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 13 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 14 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 15 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryDto should be final. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 22 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 22 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 30 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 31 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 36 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter category should be final. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 38 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 38 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 50 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 50 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 52 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 52 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 52 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 57 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryDto should be final. | 58 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter category should be final. | 58 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 59 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 59 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 63 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 63 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 64 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 64 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 67 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 67 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 72 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 72 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 74 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 74 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 76 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 78 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 81 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 81 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 82 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 82 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 89 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameDto1ToBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'boardGameDto1ToBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 89 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameDto1 should be final. | 89 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 96 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 96 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 100 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 100 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 101 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 101 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 102 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 102 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 97). | 107 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameDto1SetToBoardGameSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'boardGameDto1SetToBoardGameSet' static/final/abstract/empty, or adding allowed annotation for the method. | 107 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 107 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 108 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 113 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 113 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 114 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 114 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 114 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 114 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 120 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameToBoardGameDto1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'boardGameToBoardGameDto1' static/final/abstract/empty, or adding allowed annotation for the method. | 120 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGame should be final. | 120 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 121 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 121 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 180). | 143 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 143 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 143 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 97). | 148 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameSetToBoardGameDto1Set' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryMapperImpl' final or making the method 'boardGameSetToBoardGameDto1Set' static/final/abstract/empty, or adding allowed annotation for the method. | 148 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 148 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 149 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 149 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 142). | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 153 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 153 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 154 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 154 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 155 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 155 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 155 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 155 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 5 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 7 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 90). | 13 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 16 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 18 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 19 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 15 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisherDto should be final. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 22 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 22 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 29 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 95). | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 32 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 37 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisher should be final. | 38 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 39 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 39 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 49 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 49 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 49 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 51 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 51 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 51 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 56 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 57 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisherDto should be final. | 57 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisher should be final. | 57 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 58 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 58 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 62 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 62 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 63 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 63 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 65 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 65 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 68 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 68 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 72 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 72 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 74 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 78 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 78 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 82 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 82 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 87 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameDto1ToBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'boardGameDto1ToBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 87 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameDto1 should be final. | 87 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 95 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 95 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 96 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 96 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 100 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 100 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 105 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameDto1SetToBoardGameSet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'boardGameDto1SetToBoardGameSet' static/final/abstract/empty, or adding allowed annotation for the method. | 105 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 106 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 106 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 110 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 110 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 88). | 118 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameToBoardGameDto1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'boardGameToBoardGameDto1' static/final/abstract/empty, or adding allowed annotation for the method. | 118 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGame should be final. | 118 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 119 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 182). | 141 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 141 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 141 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 146 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherMapperImpl' looks like designed for extension (can be subclassed), but the method 'boardGameSetToBoardGameDto1Set' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherMapperImpl' final or making the method 'boardGameSetToBoardGameDto1Set' static/final/abstract/empty, or adding allowed annotation for the method. | 146 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter set should be final. | 146 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 147 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 147 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 144). | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 151 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '.75f' is a magic number. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 151 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '16' is a magic number. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 151 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 152 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 152 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 153 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 5 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 7 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 19 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 14 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 19 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 20 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 27 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 27 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 27 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 27 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 30 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 36 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 48 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 48 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 49 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 49 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 50 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 50 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 51 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 51 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 138). | 55 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 55 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 55 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 60 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 61 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 61 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 62 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 62 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 66 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 67 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 67 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 71 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 71 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 74 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 74 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 75 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 75 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 78 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 78 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingDtoToBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'ratingDtoToBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 84 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 85 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 85 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 92 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 92 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingDtoToAppUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'ratingDtoToAppUser' static/final/abstract/empty, or adding allowed annotation for the method. | 97 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 104 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 104 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 105 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 110 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 115 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 115 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 119 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 119 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 125 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 126 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 126 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 130 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 130 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 134 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 134 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 140 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 141 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 141 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 145 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 145 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 149 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 149 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 155 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 156 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 156 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 160 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 160 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 164 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 164 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 88). | 170 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingDtoToBoardGame1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'ratingDtoToBoardGame1' static/final/abstract/empty, or adding allowed annotation for the method. | 170 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 170 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter mappingTarget should be final. | 170 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 171 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 171 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 175 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 175 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 176 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 176 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 178 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 178 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 179 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 179 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 183 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingMapperImpl' looks like designed for extension (can be subclassed), but the method 'ratingDtoToAppUser1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingMapperImpl' final or making the method 'ratingDtoToAppUser1' static/final/abstract/empty, or adding allowed annotation for the method. | 183 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingDto should be final. | 183 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter mappingTarget should be final. | 183 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 184 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 184 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 188 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 188 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 189 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 191 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 191 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 192 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 192 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 5 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 7 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 10 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 10 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 22 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 14 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 19 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 20 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 21 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 25 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 25 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 26 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 26 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 29 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 36 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 37 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 43 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 43 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 43 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 43 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 44 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 44 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 44 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 44 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 45 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 45 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 46 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 46 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 51 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 52 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 53 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 53 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 63 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 63 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 64 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 64 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 65 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 65 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 118). | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 69 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 69 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 74 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 75 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 75 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 80 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 81 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 81 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 83 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 83 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 85 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 85 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 87 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 87 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 89 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 89 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 92 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 92 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDtoToAppUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'reviewDtoToAppUser' static/final/abstract/empty, or adding allowed annotation for the method. | 98 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 98 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 106 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 106 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDtoToBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'reviewDtoToBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 111 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 118 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 118 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 123 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 124 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 124 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 128 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 128 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 132 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 132 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 138 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 139 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 139 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 143 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 143 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 147 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 147 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter review should be final. | 153 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 154 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 154 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 158 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 158 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 162 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 162 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 168 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDtoToAppUser1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'reviewDtoToAppUser1' static/final/abstract/empty, or adding allowed annotation for the method. | 168 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 168 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter mappingTarget should be final. | 168 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 169 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 169 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 173 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 173 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 174 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 174 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 176 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 176 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 177 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 177 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 88). | 181 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewMapperImpl' looks like designed for extension (can be subclassed), but the method 'reviewDtoToBoardGame1' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewMapperImpl' final or making the method 'reviewDtoToBoardGame1' static/final/abstract/empty, or adding allowed annotation for the method. | 181 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 181 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter mappingTarget should be final. | 181 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 182 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 182 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 186 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 186 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 187 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 187 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - org.mapstruct.*. | 5 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 7 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 9 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGameDto' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 9 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGame' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 11 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 13 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 14 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGameDto' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 14 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGame' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 14 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 102). | 12 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'toEntity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameMapperImpl' final or making the method 'toEntity' static/final/abstract/empty, or adding allowed annotation for the method. | 17 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter VAllBoardGameDto should be final. | 18 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGameDto' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 18 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 19 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 19 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 25 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 25 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 26 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 26 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 27 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 27 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 28 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 28 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 29 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 30 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 31 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 31 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 32 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 33 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 33 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 34 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 34 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 35 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 35 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'toDto' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameMapperImpl' final or making the method 'toDto' static/final/abstract/empty, or adding allowed annotation for the method. | 40 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter VAllBoardGame should be final. | 41 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGame' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 41 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 42 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 42 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 218). | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 70 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 70 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameMapperImpl' looks like designed for extension (can be subclassed), but the method 'partialUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameMapperImpl' final or making the method 'partialUpdate' static/final/abstract/empty, or adding allowed annotation for the method. | 75 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 104). | 76 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter VAllBoardGameDto should be final. | 76 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGameDto' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 76 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter VAllBoardGame should be final. | 76 |
src="images/icon_error_sml.gif" Error | naming | ParameterName | Name 'VAllBoardGame' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 76 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 77 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 81 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 81 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 82 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 82 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 84 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 85 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 85 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 87 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 87 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 88 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 90 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 91 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 93 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 93 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 94 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 96 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 96 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 97 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 99 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 100 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 100 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 102 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 102 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 103 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 103 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 103 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 105 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 106 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 106 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 108 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 109 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 109 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 111 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | '(' is followed by whitespace. | 112 |
src="images/icon_error_sml.gif" Error | whitespace | ParenPad | ')' is preceded with whitespace. | 112 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - jakarta.persistence.*. | 3 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 31 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 34 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 38 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 42 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 42 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 108). | 45 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 45 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 51 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 51 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 14 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - jakarta.persistence.*. | 3 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 30 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 33 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 36 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 108). | 39 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 39 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 45 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 48 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 51 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 55 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 141). | 58 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 58 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 112). | 61 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 61 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - jakarta.persistence.*. | 3 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '50' is a magic number. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 33 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 133). | 38 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter o should be final. | 42 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 43 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 152). | 45 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 164). | 46 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 158). | 54 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - jakarta.persistence.*. | 3 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 28 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 28 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '50' is a magic number. | 28 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 32 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 32 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - jakarta.persistence.*. | 3 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 107). | 17 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 33 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 37 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter o should be final. | 42 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 43 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 152). | 45 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 164). | 46 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 158). | 54 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - jakarta.persistence.*. | 3 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 31 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter o should be final. | 41 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 42 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 43 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 152). | 44 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 164). | 45 |
src="images/icon_error_sml.gif" Error | blocks | NeedBraces | 'if' construct must use '{}'s. | 46 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 158). | 53 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 4 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 5 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocStyle | First sentence should end with a period. | 13 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 22 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 32 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 35 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 38 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 41 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 44 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 47 |
src="images/icon_error_sml.gif" Error | coding | MagicNumber | '50' is a magic number. | 47 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 50 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 53 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 17 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 17 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 19 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 31 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 33 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 12 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 14 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 15 |
src="images/icon_error_sml.gif" Error | naming | MethodName | Name 'findAllByBoardGame_PublicID' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 17 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 12 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 14 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | misc | NewlineAtEndOfFile | File does not end with a newline. | 1 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 9 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 11 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 11 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 13 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 15 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 15 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 96). | 17 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 27 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'AppUserDetailService' looks like designed for extension (can be subclassed), but the method 'loadUserByUsername' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'AppUserDetailService' final or making the method 'loadUserByUsername' static/final/abstract/empty, or adding allowed annotation for the method. | 21 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 22 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter username should be final. | 22 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 110). | 30 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocPackage | Missing package-info.java file. | 1 |
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - java.util.*. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 24 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 27 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 31 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameRepository should be final. | 33 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameRepository' hides a field. | 33 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisherService should be final. | 34 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'publisherService' hides a field. | 34 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameMapper should be final. | 35 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameMapper' hides a field. | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryRepository should be final. | 36 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'categoryRepository' hides a field. | 36 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserRepository should be final. | 37 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'appUserRepository' hides a field. | 37 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingService should be final. | 37 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'ratingService' hides a field. | 37 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 47 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 91). | 48 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'save' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'save' static/final/abstract/empty, or adding allowed annotation for the method. | 51 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 51 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter dto should be final. | 51 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 111). | 54 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 57 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 58 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findByPublicID' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findByPublicID' static/final/abstract/empty, or adding allowed annotation for the method. | 72 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 72 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 72 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findByPublicIdToDTO' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findByPublicIdToDTO' static/final/abstract/empty, or adding allowed annotation for the method. | 76 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 76 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 76 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 92). | 77 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'deleteById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'deleteById' static/final/abstract/empty, or adding allowed annotation for the method. | 80 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 80 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 80 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByGameName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findBoardGamesByGameName' static/final/abstract/empty, or adding allowed annotation for the method. | 84 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 84 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameName should be final. | 84 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 95). | 85 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 88 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findBoardGamesDtoByGameName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findBoardGamesDtoByGameName' static/final/abstract/empty, or adding allowed annotation for the method. | 88 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 88 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameName should be final. | 88 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 89 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 95 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByPublisherPublicID' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findBoardGamesByPublisherPublicID' static/final/abstract/empty, or adding allowed annotation for the method. | 95 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 95 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisherID should be final. | 95 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findBoardGamesByCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 102 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 102 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicId should be final. | 102 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 103 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 104 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findBoardGamesByDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findBoardGamesByDescription' static/final/abstract/empty, or adding allowed annotation for the method. | 108 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 108 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter description should be final. | 108 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 109 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'sortByName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'sortByName' static/final/abstract/empty, or adding allowed annotation for the method. | 113 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 113 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter order should be final. | 113 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findByLessThanOrEqualsMaxPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findByLessThanOrEqualsMaxPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 125 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 125 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter maxPlayer should be final. | 125 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '{' is not preceded with whitespace. | 125 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'BoardGameService' looks like designed for extension (can be subclassed), but the method 'findByMoreThanOrEqualsMinPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'BoardGameService' final or making the method 'findByMoreThanOrEqualsMinPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 131 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 131 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter minPlayer should be final. | 131 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 16 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryRepository should be final. | 20 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'categoryRepository' hides a field. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryMapper should be final. | 20 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'categoryMapper' hides a field. | 20 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryService' looks like designed for extension (can be subclassed), but the method 'save' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryService' final or making the method 'save' static/final/abstract/empty, or adding allowed annotation for the method. | 30 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 30 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter entity should be final. | 30 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryService' looks like designed for extension (can be subclassed), but the method 'findById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryService' final or making the method 'findById' static/final/abstract/empty, or adding allowed annotation for the method. | 36 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 36 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 36 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'CategoryService' looks like designed for extension (can be subclassed), but the method 'deleteById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'CategoryService' final or making the method 'deleteById' static/final/abstract/empty, or adding allowed annotation for the method. | 41 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 41 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicId should be final. | 41 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 15 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 16 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 19 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter mapper should be final. | 19 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'mapper' hides a field. | 19 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter repository should be final. | 19 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'repository' hides a field. | 19 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 24 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 24 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherService' looks like designed for extension (can be subclassed), but the method 'save' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherService' final or making the method 'save' static/final/abstract/empty, or adding allowed annotation for the method. | 28 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 28 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter dto should be final. | 28 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherService' looks like designed for extension (can be subclassed), but the method 'update' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherService' final or making the method 'update' static/final/abstract/empty, or adding allowed annotation for the method. | 34 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 34 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter updatedPublisher should be final. | 34 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 34 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherService' looks like designed for extension (can be subclassed), but the method 'findById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherService' final or making the method 'findById' static/final/abstract/empty, or adding allowed annotation for the method. | 39 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 39 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 39 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherService' looks like designed for extension (can be subclassed), but the method 'findByPublicId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherService' final or making the method 'findByPublicId' static/final/abstract/empty, or adding allowed annotation for the method. | 43 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 43 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicId should be final. | 43 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'PublisherService' looks like designed for extension (can be subclassed), but the method 'deleteById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublisherService' final or making the method 'deleteById' static/final/abstract/empty, or adding allowed annotation for the method. | 47 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 47 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 47 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 22 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 24 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 26 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 166). | 30 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingMapper should be final. | 30 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'ratingMapper' hides a field. | 30 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter ratingRepository should be final. | 30 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'ratingRepository' hides a field. | 30 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameRepository should be final. | 30 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameRepository' hides a field. | 30 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserRepository should be final. | 30 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'appUserRepository' hides a field. | 30 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 37 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 37 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 38 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingService' looks like designed for extension (can be subclassed), but the method 'save' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingService' final or making the method 'save' static/final/abstract/empty, or adding allowed annotation for the method. | 41 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 41 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter dto should be final. | 41 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 99). | 42 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 90). | 43 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingService' looks like designed for extension (can be subclassed), but the method 'delete' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingService' final or making the method 'delete' static/final/abstract/empty, or adding allowed annotation for the method. | 51 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 51 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter entity should be final. | 51 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingService' looks like designed for extension (can be subclassed), but the method 'findAllRatingsByBoardGame_Id' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingService' final or making the method 'findAllRatingsByBoardGame_Id' static/final/abstract/empty, or adding allowed annotation for the method. | 55 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 55 |
src="images/icon_error_sml.gif" Error | naming | MethodName | Name 'findAllRatingsByBoardGame_Id' must match pattern '^[a-z][a-zA-Z0-9]*$'. | 55 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameId should be final. | 55 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 59 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'RatingService' looks like designed for extension (can be subclassed), but the method 'checkIfRatingExist' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RatingService' final or making the method 'checkIfRatingExist' static/final/abstract/empty, or adding allowed annotation for the method. | 59 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 59 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserPublicID should be final. | 59 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGamePublicID should be final. | 59 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 60 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 61 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 62 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 18 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 20 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 21 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 23 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 148). | 24 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewMapper should be final. | 24 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'reviewMapper' hides a field. | 24 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewRepository should be final. | 24 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'reviewRepository' hides a field. | 24 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userService should be final. | 24 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'userService' hides a field. | 24 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameService should be final. | 24 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameService' hides a field. | 24 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 31 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 31 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 32 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewService' looks like designed for extension (can be subclassed), but the method 'findAllReviewsByBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewService' final or making the method 'findAllReviewsByBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 35 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 35 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 35 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '{' is not preceded with whitespace. | 35 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 38 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewService' looks like designed for extension (can be subclassed), but the method 'save' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewService' final or making the method 'save' static/final/abstract/empty, or adding allowed annotation for the method. | 41 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 41 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter reviewDto should be final. | 41 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 98). | 42 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 44 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'ReviewService' looks like designed for extension (can be subclassed), but the method 'deleteById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ReviewService' final or making the method 'deleteById' static/final/abstract/empty, or adding allowed annotation for the method. | 54 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 54 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 54 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | imports | AvoidStarImport | Using the '.*' form of import should be avoided - java.util.*. | 23 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 30 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 31 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 32 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 33 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 34 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 35 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 37 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 270). | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter passwordEncoder should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'passwordEncoder' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userRepository should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'userRepository' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter entityMapper should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'entityMapper' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter jwtService should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'jwtService' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter authenticationManager should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'authenticationManager' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserDetailsService should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'appUserDetailsService' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameRepository should be final. | 38 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'boardGameRepository' hides a field. | 38 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 48 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 48 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'findAllByBoardGame' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'findAllByBoardGame' static/final/abstract/empty, or adding allowed annotation for the method. | 53 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 53 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userIds should be final. | 53 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 126). | 54 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'register' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'register' static/final/abstract/empty, or adding allowed annotation for the method. | 58 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 58 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userDto should be final. | 58 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 169). | 59 |
src="images/icon_error_sml.gif" Error | blocks | LeftCurly | '{' at column 13 should have line break after. | 64 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '{' is not followed by whitespace. | 64 |
src="images/icon_error_sml.gif" Error | blocks | RightCurly | '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). | 66 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'authenticate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'authenticate' static/final/abstract/empty, or adding allowed annotation for the method. | 73 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 73 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter appUserDto should be final. | 73 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '{' is not preceded with whitespace. | 73 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 88). | 80 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 100). | 83 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'save' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'save' static/final/abstract/empty, or adding allowed annotation for the method. | 89 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 89 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter entity should be final. | 89 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'findById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'findById' static/final/abstract/empty, or adding allowed annotation for the method. | 99 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 99 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 99 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 100 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'findByEmail' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'findByEmail' static/final/abstract/empty, or adding allowed annotation for the method. | 102 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 102 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter email should be final. | 102 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'findByPublicID' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'findByPublicID' static/final/abstract/empty, or adding allowed annotation for the method. | 113 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 113 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter uuid should be final. | 113 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'deleteById' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'deleteById' static/final/abstract/empty, or adding allowed annotation for the method. | 117 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 117 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publicID should be final. | 117 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'update' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'update' static/final/abstract/empty, or adding allowed annotation for the method. | 121 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 121 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter id should be final. | 121 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter uuid should be final. | 121 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'UserService' looks like designed for extension (can be subclassed), but the method 'deleteFromFavorites' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UserService' final or making the method 'deleteFromFavorites' static/final/abstract/empty, or adding allowed annotation for the method. | 131 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 131 |
src="images/icon_error_sml.gif" Error | whitespace | MethodParamPad | '(' is preceded with whitespace. | 131 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter userID should be final. | 131 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter bgID should be final. | 131 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '{' is not preceded with whitespace. | 131 |
Severity | Category | Rule | Message | Line |
---|---|---|---|---|
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 16 |
src="images/icon_error_sml.gif" Error | javadoc | JavadocVariable | Missing a Javadoc comment. | 17 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 19 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 123). | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter vAllBoardGameRepository should be final. | 20 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'vAllBoardGameRepository' hides a field. | 20 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter vAllBoardGameMapper should be final. | 20 |
src="images/icon_error_sml.gif" Error | coding | HiddenField | 'vAllBoardGameMapper' hides a field. | 20 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findAll' static/final/abstract/empty, or adding allowed annotation for the method. | 25 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 25 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 99). | 26 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 83). | 29 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesByGameName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findVAllBoardGamesByGameName' static/final/abstract/empty, or adding allowed annotation for the method. | 29 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 29 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameName should be final. | 29 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 99). | 30 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 89). | 33 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesDtoByGameName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findVAllBoardGamesDtoByGameName' static/final/abstract/empty, or adding allowed annotation for the method. | 33 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 33 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter boardGameName should be final. | 33 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 34 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 86). | 40 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findAllBoardGamesByPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findAllBoardGamesByPublisher' static/final/abstract/empty, or adding allowed annotation for the method. | 40 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 40 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter publisherName should be final. | 40 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 41 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 46 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesByCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findVAllBoardGamesByCategory' static/final/abstract/empty, or adding allowed annotation for the method. | 46 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 46 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter categoryName should be final. | 46 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 93). | 47 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 87). | 51 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findVAllBoardGamesByDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findVAllBoardGamesByDescription' static/final/abstract/empty, or adding allowed annotation for the method. | 51 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 51 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter description should be final. | 51 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 103). | 52 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'sortByName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'sortByName' static/final/abstract/empty, or adding allowed annotation for the method. | 56 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 56 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter order should be final. | 56 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 68 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findByLessThanOrEqualsMaxPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findByLessThanOrEqualsMaxPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 68 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 68 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter maxPlayer should be final. | 68 |
src="images/icon_error_sml.gif" Error | whitespace | WhitespaceAround | '{' is not preceded with whitespace. | 68 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 81). | 69 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 82). | 74 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findByMoreThanOrEqualsMinPlayer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findByMoreThanOrEqualsMinPlayer' static/final/abstract/empty, or adding allowed annotation for the method. | 74 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 74 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter minPlayer should be final. | 74 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 84). | 75 |
src="images/icon_error_sml.gif" Error | design | DesignForExtension | Class 'VAllBoardGameService' looks like designed for extension (can be subclassed), but the method 'findByMoreThanOrEqualRating' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VAllBoardGameService' final or making the method 'findByMoreThanOrEqualRating' static/final/abstract/empty, or adding allowed annotation for the method. | 80 |
src="images/icon_error_sml.gif" Error | javadoc | MissingJavadocMethod | Missing a Javadoc comment. | 80 |
src="images/icon_error_sml.gif" Error | misc | FinalParameters | Parameter rating should be final. | 80 |
src="images/icon_error_sml.gif" Error | sizes | LineLength | Line is longer than 80 characters (found 85). | 81 |