Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
2 0 0 31

Rules

Category Rule Violations Severity
design DesignForExtension 4  Error
javadoc JavadocMethod 5  Error
JavadocPackage 1  Error
JavadocStyle 1  Error
JavadocType 2  Error
JavadocVariable 2  Error
naming TypeName 1  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
10  Error
sizes LineLength 2  Error
whitespace FileTabCharacter 2  Error
NoWhitespaceAfter 1  Error

Details

integrationsprojekt/App.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 4
 Error javadoc JavadocStyle First sentence should end with a period. 5
 Error javadoc JavadocMethod Expected @return tag. 9
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error design DesignForExtension Class 'App' looks like designed for extension (can be subclassed), but the method 'untestedMethod' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'App' final or making the method 'untestedMethod' static/final/abstract/empty, or adding allowed annotation for the method. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 13
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error regexp RegexpSingleline Line has trailing spaces. 16
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error sizes LineLength Line is longer than 80 characters (found 134). 20
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error design DesignForExtension Class 'App' looks like designed for extension (can be subclassed), but the method 'doppelteMethod' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'App' final or making the method 'doppelteMethod' static/final/abstract/empty, or adding allowed annotation for the method. 24
 Error javadoc JavadocMethod Missing a Javadoc comment. 24
 Error sizes LineLength Line is longer than 80 characters (found 134). 25
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error design DesignForExtension Class 'App' looks like designed for extension (can be subclassed), but the method 'nullWert' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'App' final or making the method 'nullWert' static/final/abstract/empty, or adding allowed annotation for the method. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 28
 Error regexp RegexpSingleline Line has trailing spaces. 31

integrationsprojekt/spotbugstest.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error javadoc JavadocType Missing a Javadoc comment. 3
 Error naming TypeName Name 'spotbugstest' must match pattern '^[A-Z][a-zA-Z0-9]*$'. 3
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 5
 Error javadoc JavadocVariable Missing a Javadoc comment. 6
 Error javadoc JavadocVariable Missing a Javadoc comment. 8
 Error design DesignForExtension Class 'spotbugstest' looks like designed for extension (can be subclassed), but the method 'test' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'spotbugstest' final or making the method 'test' static/final/abstract/empty, or adding allowed annotation for the method. 10
 Error javadoc JavadocMethod Missing a Javadoc comment. 10
 Error whitespace NoWhitespaceAfter '{' is followed by whitespace. 11