Checkstyle Results

The following document contains the results of Checkstyle 9.3 with sun_checks.xml ruleset.

Summary

Files  Info  Warnings  Errors
4 0 0 23

Files

File  I  W  E
org/apache/creadur/whisker/cli/CommandLineOption.java 0 0 9
org/apache/creadur/whisker/cli/Main.java 0 0 14

Rules

Category Rule Violations Severity
coding HiddenField 7  Error
imports AvoidStarImport 1  Error
javadoc JavadocStyle 1  Error
misc FinalParameters 1  Error
modifier RedundantModifier 1  Error
sizes LineLength
  • fileExtensions: "java"
3  Error
whitespace FileTabCharacter 1  Error
OperatorWrap 8  Error

Details

org/apache/creadur/whisker/cli/CommandLineOption.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 97). 45
 Error modifier RedundantModifier Redundant 'private' modifier. 89
 Error coding HiddenField 'longName' hides a field. 89
 Error coding HiddenField 'shortName' hides a field. 90
 Error coding HiddenField 'description' hides a field. 91
 Error coding HiddenField 'required' hides a field. 92
 Error coding HiddenField 'argument' hides a field. 93
 Error coding HiddenField 'isAct' hides a field. 94
 Error sizes LineLength Line is longer than 80 characters (found 86). 133

org/apache/creadur/whisker/cli/Main.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.commons.cli.*. 21
 Error whitespace OperatorWrap '+' should be on a new line. 36
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 37
 Error whitespace OperatorWrap '+' should be on a new line. 37
 Error whitespace OperatorWrap '+' should be on a new line. 44
 Error whitespace OperatorWrap '+' should be on a new line. 45
 Error whitespace OperatorWrap '+' should be on a new line. 46
 Error whitespace OperatorWrap '+' should be on a new line. 47
 Error whitespace OperatorWrap '+' should be on a new line. 48
 Error whitespace OperatorWrap '+' should be on a new line. 49
 Error coding HiddenField 'whisker' hides a field. 88
 Error javadoc JavadocStyle First sentence should end with a period. 154
 Error misc FinalParameters Parameter args should be final. 195
 Error sizes LineLength Line is longer than 80 characters (found 81). 211