Checkstyle Results

The following document contains the results of Checkstyle 6.18 with sun_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
4 0 0 188

Rules

Category Rule Violations Severity
blocks LeftCurly 5  Error
RightCurly 10  Error
coding HiddenField 6  Error
design DesignForExtension 8  Error
HideUtilityClassConstructor 1  Error
VisibilityModifier 5  Error
javadoc JavadocMethod 22  Error
JavadocPackage 1  Error
JavadocVariable 19  Error
misc ArrayTypeStyle 2  Error
FinalParameters 17  Error
naming ConstantName 7  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
60  Error
sizes LineLength 14  Error
whitespace FileTabCharacter 4  Error
OperatorWrap 2  Error
WhitespaceAfter 5  Error

Details

ejava/projects/edmv/blimpl/EDmvIngestCommand.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 16
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 20
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 21
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 Error sizes LineLength Line is longer than 80 characters (found 91). 22
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 23
 Error naming ConstantName Name 'jdbcDriver' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 23
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error naming ConstantName Name 'jdbcURL' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 25
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error naming ConstantName Name 'jdbcUser' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 27
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error naming ConstantName Name 'jdbcPassword' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 29
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error naming ConstantName Name 'inputFile' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 31
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error javadoc JavadocMethod Missing a Javadoc comment. 34
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error sizes LineLength Line is longer than 80 characters (found 87). 52
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error javadoc JavadocMethod Missing a Javadoc comment. 57
 Error regexp RegexpSingleline Line has trailing spaces. 66
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error sizes LineLength Line is longer than 80 characters (found 84). 77
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error javadoc JavadocMethod Missing a Javadoc comment. 80
 Error misc FinalParameters Parameter args should be final. 80
 Error misc ArrayTypeStyle Array brackets at illegal position. 80
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error blocks RightCurly '}' at column 7 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 or try/catch/finally). 98
 Error blocks LeftCurly '{' at column 29 should have line break after. 100
 Error blocks LeftCurly '{' at column 21 should have line break after. 101
 Error blocks RightCurly '}' at column 6 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 or try/catch/finally). 103

ejava/projects/edmv/blimpl/EDmvIngestor.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 86). 27
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error design VisibilityModifier Variable 'is' must be private and have accessor methods. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error design VisibilityModifier Variable 'personDAO' must be private and have accessor methods. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error design VisibilityModifier Variable 'vehicleDAO' must be private and have accessor methods. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error design VisibilityModifier Variable 'parser' must be private and have accessor methods. 31
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error design VisibilityModifier Variable 'dto2bo' must be private and have accessor methods. 32
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error design DesignForExtension Method 'setInputStream' is not designed for extension - needs to be abstract, final or empty. 35
 Error javadoc JavadocMethod Missing a Javadoc comment. 35
 Error misc FinalParameters Parameter is should be final. 35
 Error coding HiddenField 'is' hides a field. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error design DesignForExtension Method 'setPersonDAO' is not designed for extension - needs to be abstract, final or empty. 39
 Error javadoc JavadocMethod Missing a Javadoc comment. 39
 Error misc FinalParameters Parameter personDAO should be final. 39
 Error coding HiddenField 'personDAO' hides a field. 39
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error design DesignForExtension Method 'setVehicleDAO' is not designed for extension - needs to be abstract, final or empty. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 43
 Error misc FinalParameters Parameter vehicleDAO should be final. 43
 Error coding HiddenField 'vehicleDAO' hides a field. 43
 Error sizes LineLength Line is longer than 80 characters (found 81). 49
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error design DesignForExtension Method 'ingest' is not designed for extension - needs to be abstract, final or empty. 59
 Error javadoc JavadocMethod Expected @throws tag for 'JAXBException'. 60
 Error javadoc JavadocMethod Expected @throws tag for 'XMLStreamException'. 60
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 60
 Error coding HiddenField 'parser' hides a field. 61
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error sizes LineLength Line is longer than 80 characters (found 82). 67
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 67
 Error sizes LineLength Line is longer than 80 characters (found 85). 70
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 70
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error sizes LineLength Line is longer than 80 characters (found 82). 78
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error regexp RegexpSingleline Line has trailing spaces. 84
 Error misc FinalParameters Parameter personDTO should be final. 84
 Error javadoc JavadocMethod Expected @param tag for 'personDTO'. 84
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error regexp RegexpSingleline Line has trailing spaces. 100
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 105
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error misc FinalParameters Parameter registrationDTO should be final. 108
 Error javadoc JavadocMethod Expected @param tag for 'registrationDTO'. 108
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 109
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error regexp RegexpSingleline Line has trailing spaces. 116
 Error whitespace OperatorWrap ':' should be on a new line. 116
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 119
 Error regexp RegexpSingleline Line has trailing spaces. 120
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 125
 Error regexp RegexpSingleline Line has trailing spaces. 128

ejava/projects/edmv/blimpl/EDmvMgmtCommand.java

Severity Category Rule Message Line
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error javadoc JavadocMethod Missing a Javadoc comment. 28
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error javadoc JavadocMethod Missing a Javadoc comment. 32
 Error sizes LineLength Line is longer than 80 characters (found 82). 33
 Error misc FinalParameters Parameter personMgmt should be final. 33
 Error misc FinalParameters Parameter vehicleMgmt should be final. 33
 Error blocks RightCurly '}' at column 3 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 or try/catch/finally). 36
 Error blocks RightCurly '}' at column 3 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 or try/catch/finally). 39
 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 or try/catch/finally). 42
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error misc FinalParameters Parameter personMgmt should be final. 48
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error misc FinalParameters Parameter vehicleMgmt should be final. 59
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 65
 Error whitespace OperatorWrap ':' should be on a new line. 65
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error javadoc JavadocMethod Missing a Javadoc comment. 71
 Error misc FinalParameters Parameter args should be final. 71
 Error misc ArrayTypeStyle Array brackets at illegal position. 71
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error sizes LineLength Line is longer than 80 characters (found 90). 88
 Error blocks RightCurly '}' at column 4 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 or try/catch/finally). 89
 Error sizes LineLength Line is longer than 80 characters (found 83). 92
 Error sizes LineLength Line is longer than 80 characters (found 84). 93
 Error blocks LeftCurly '{' at column 32 should have line break after. 93
 Error blocks RightCurly '}' at column 49 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 or try/catch/finally). 93
 Error sizes LineLength Line is longer than 80 characters (found 82). 94
 Error blocks LeftCurly '{' at column 32 should have line break after. 94
 Error regexp RegexpSingleline Line has trailing spaces. 96
 Error sizes LineLength Line is longer than 80 characters (found 96). 96
 Error blocks LeftCurly '{' at column 22 should have line break after. 96
 Error blocks RightCurly '}' at column 3 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 or try/catch/finally). 98

ejava/projects/edmv/blimpl/EDmvMgmtImpl.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error design DesignForExtension Method 'setPersonDAO' is not designed for extension - needs to be abstract, final or empty. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 28
 Error misc FinalParameters Parameter personDAO should be final. 28
 Error coding HiddenField 'personDAO' hides a field. 28
 Error design DesignForExtension Method 'setVehicleDAO' is not designed for extension - needs to be abstract, final or empty. 31
 Error javadoc JavadocMethod Missing a Javadoc comment. 31
 Error misc FinalParameters Parameter vehicleDAO should be final. 31
 Error coding HiddenField 'vehicleDAO' hides a field. 31
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error design DesignForExtension Method 'getPeople' is not designed for extension - needs to be abstract, final or empty. 35
 Error javadoc JavadocMethod Missing a Javadoc comment. 35
 Error misc FinalParameters Parameter index should be final. 35
 Error misc FinalParameters Parameter count should be final. 35
 Error regexp RegexpSingleline Line has trailing spaces. 39
 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 or try/catch/finally). 42
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error design DesignForExtension Method 'getRegistrations' is not designed for extension - needs to be abstract, final or empty. 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error misc FinalParameters Parameter index should be final. 49
 Error misc FinalParameters Parameter count should be final. 49
 Error regexp RegexpSingleline Line has trailing spaces. 54
 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 or try/catch/finally). 57