Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
23 0 0 313

Rules

Category Rule Violations Severity
blocks LeftCurly 9  Error
RightCurly 4  Error
coding AvoidInlineConditionals 3  Error
HiddenField 7  Error
design DesignForExtension 33  Error
VisibilityModifier 16  Error
imports AvoidStarImport 5  Error
javadoc JavadocMethod 36  Error
JavadocPackage 4  Error
JavadocStyle 14  Error
JavadocType 13  Error
JavadocVariable 16  Error
misc FinalParameters 21  Error
NewlineAtEndOfFile 1  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
70  Error
sizes LineLength 9  Error
whitespace FileTabCharacter 8  Error
WhitespaceAfter 2  Error
WhitespaceAround 42  Error

Details

ejava/examples/jndidemo/Cook.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.lang.annotation.RetentionPolicy.*. 5
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.lang.annotation.ElementType.*. 6
 Error javadoc JavadocType Missing a Javadoc comment. 9

ejava/examples/jndidemo/JndiDemo.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.lang.annotation.RetentionPolicy.*. 5
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.lang.annotation.ElementType.*. 6
 Error javadoc JavadocType Missing a Javadoc comment. 9

ejava/examples/jndidemo/Scheduler.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error javadoc JavadocStyle First sentence should end with a period. 10
 Error javadoc JavadocMethod Expected an @return tag. 11
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error javadoc JavadocStyle First sentence should end with a period. 13
 Error javadoc JavadocMethod Expected an @return tag. 14
 Error javadoc JavadocMethod Expected @param tag for 'name'. 14
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error javadoc JavadocStyle First sentence should end with a period. 16
 Error javadoc JavadocMethod Expected an @return tag. 17
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error javadoc JavadocMethod Expected @param tag for 'name'. 17
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error javadoc JavadocStyle First sentence should end with a period. 19
 Error javadoc JavadocMethod Expected an @return tag. 20

ejava/examples/jndidemo/SchedulerResources.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 17
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 17
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 22
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 22
 Error design VisibilityModifier Variable 'ds' must be private and have accessor methods. 25
 Error regexp RegexpSingleline Line has trailing spaces. 26
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 32
 Error design VisibilityModifier Variable 'em' must be private and have accessor methods. 35
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error design VisibilityModifier Variable 'message' must be private and have accessor methods. 43
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 43
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 43
 Error javadoc JavadocStyle First sentence should end with a period. 45
 Error sizes LineLength Line is longer than 80 characters (found 85). 48
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 48
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 48
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error design VisibilityModifier Variable 'cook' must be private and have accessor methods. 51

ejava/examples/jndidemo/bo/Task.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 8
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 8
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 15
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error misc FinalParameters Parameter id should be final. 16
 Error coding HiddenField 'id' hides a field. 16
 Error misc FinalParameters Parameter name should be final. 16
 Error coding HiddenField 'name' hides a field. 16
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 21
 Error javadoc JavadocMethod Missing a Javadoc comment. 21
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 24
 Error javadoc JavadocMethod Missing a Javadoc comment. 24
 Error misc FinalParameters Parameter id should be final. 24
 Error coding HiddenField 'id' hides a field. 24
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 27
 Error javadoc JavadocMethod Missing a Javadoc comment. 27
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 30
 Error javadoc JavadocMethod Missing a Javadoc comment. 30
 Error misc FinalParameters Parameter name should be final. 30
 Error coding HiddenField 'name' hides a field. 30
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 34

ejava/examples/jndidemo/dao/JPADAOBase.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline.
 Error javadoc JavadocPackage Missing package-info.java file.
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 10
 Error design VisibilityModifier Variable 'em' must be private and have accessor methods. 10
 Error design DesignForExtension Method 'create' is not designed for extension - needs to be abstract, final or empty. 12
 Error javadoc JavadocMethod Missing a Javadoc comment. 12
 Error misc FinalParameters Parameter task should be final. 12
 Error design DesignForExtension Method 'update' is not designed for extension - needs to be abstract, final or empty. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error misc FinalParameters Parameter task should be final. 15
 Error design DesignForExtension Method 'delete' is not designed for extension - needs to be abstract, final or empty. 18
 Error javadoc JavadocMethod Missing a Javadoc comment. 18
 Error misc FinalParameters Parameter task should be final. 18

ejava/examples/jndidemo/dao/JPASchedulerDAOImpl.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 83). 18
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 19
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error design DesignForExtension Method 'setEntityManager' is not designed for extension - needs to be abstract, final or empty. 20
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error misc FinalParameters Parameter em should be final. 21
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error design DesignForExtension Method 'get' is not designed for extension - needs to be abstract, final or empty. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 25
 Error misc FinalParameters Parameter id should be final. 25
 Error design DesignForExtension Method 'findByName' is not designed for extension - needs to be abstract, final or empty. 29
 Error misc FinalParameters Parameter name should be final. 30
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error sizes LineLength Line is longer than 80 characters (found 85). 32
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 35
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 35
 Error coding AvoidInlineConditionals Avoid inline conditionals. 35
 Error design DesignForExtension Method 'getTasks' is not designed for extension - needs to be abstract, final or empty. 38
 Error misc FinalParameters Parameter offset should be final. 39
 Error misc FinalParameters Parameter limit should be final. 39
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 46

ejava/examples/jndidemo/dao/SchedulerDAO.java

Severity Category Rule Message Line
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11
 Error javadoc JavadocMethod Missing a Javadoc comment. 11
 Error javadoc JavadocMethod Missing a Javadoc comment. 12
 Error javadoc JavadocMethod Missing a Javadoc comment. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16

ejava/examples/jndidemo/ejb/AidSchedulerEJB.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error javadoc JavadocType Unknown tag 'Annotations'. 16
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error design DesignForExtension Method 'setSessionContext' is not designed for extension - needs to be abstract, final or empty. 35
 Error misc FinalParameters Parameter ctx should be final. 36
 Error blocks LeftCurly '{' should have line break after. 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error design DesignForExtension Method 'init' is not designed for extension - needs to be abstract, final or empty. 38
 Error javadoc JavadocMethod Missing a Javadoc comment. 38
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error sizes LineLength Line is longer than 80 characters (found 81). 48
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 48
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error blocks LeftCurly '{' should have line break after. 50
 Error blocks RightCurly '}' should have line break before. 50
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 53
 Error blocks LeftCurly '{' should have line break after. 53

ejava/examples/jndidemo/ejb/BakeSchedulerEJB.java

Severity Category Rule Message Line
 Error whitespace WhitespaceAfter ';' is not followed by whitespace. 3
 Error javadoc JavadocStyle First sentence should end with a period. 17
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 25
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 25
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 33
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 33
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 34
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 34
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 34
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 35
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 39
 Error blocks LeftCurly '{' should have line break after. 39
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 47
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 47
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 48
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 48
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 56
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 63
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 63
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 63
 Error regexp RegexpSingleline Line has trailing spaces. 65
 Error design DesignForExtension Method 'setSessionContext' is not designed for extension - needs to be abstract, final or empty. 70
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error misc FinalParameters Parameter ctx should be final. 71
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 79
 Error design VisibilityModifier Variable 'cook' must be private and have accessor methods. 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 86
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 86
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error design VisibilityModifier Variable 'cook2' must be private and have accessor methods. 87
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error javadoc JavadocVariable Missing a Javadoc comment. 93
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 93
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 93
 Error design VisibilityModifier Variable 'message' must be private and have accessor methods. 94
 Error design DesignForExtension Method 'init' is not designed for extension - needs to be abstract, final or empty. 96
 Error javadoc JavadocMethod Missing a Javadoc comment. 96
 Error regexp RegexpSingleline Line has trailing spaces. 97
 Error sizes LineLength Line is longer than 80 characters (found 81). 98
 Error sizes LineLength Line is longer than 80 characters (found 82). 103
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 108
 Error regexp RegexpSingleline Line has trailing spaces. 109
 Error sizes LineLength Line is longer than 80 characters (found 86). 110
 Error blocks LeftCurly '{' should have line break after. 111
 Error blocks RightCurly '}' should have line break before. 111

ejava/examples/jndidemo/ejb/BakeSchedulerRemote.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 7

ejava/examples/jndidemo/ejb/CookEJB.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 10
 Error blocks LeftCurly '{' should have line break after. 10
 Error design DesignForExtension Method 'setSessionContext' is not designed for extension - needs to be abstract, final or empty. 12
 Error javadoc JavadocMethod Missing a Javadoc comment. 12
 Error misc FinalParameters Parameter ctx should be final. 13

ejava/examples/jndidemo/ejb/CookLocal.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 7

ejava/examples/jndidemo/ejb/HospitalEJB.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 14
 Error blocks LeftCurly '{' should have line break after. 14
 Error regexp RegexpSingleline Line has trailing spaces. 16
 Error design DesignForExtension Method 'setSessionContext' is not designed for extension - needs to be abstract, final or empty. 16
 Error misc FinalParameters Parameter ctx should be final. 17
 Error blocks LeftCurly '{' should have line break after. 17

ejava/examples/jndidemo/ejb/HospitalLocal.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 6

ejava/examples/jndidemo/ejb/HospitalRemote.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 6

ejava/examples/jndidemo/ejb/Reservation.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 5
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 5
 Error javadoc JavadocVariable Missing a Javadoc comment. 7
 Error javadoc JavadocVariable Missing a Javadoc comment. 8
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 10
 Error javadoc JavadocMethod Missing a Javadoc comment. 10
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error misc FinalParameters Parameter id should be final. 14
 Error coding HiddenField 'id' hides a field. 14
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 18
 Error javadoc JavadocMethod Missing a Javadoc comment. 18
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 21
 Error javadoc JavadocMethod Missing a Javadoc comment. 21
 Error misc FinalParameters Parameter name should be final. 21
 Error coding HiddenField 'name' hides a field. 21

ejava/examples/jndidemo/ejb/SchedulerBase.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error design VisibilityModifier Variable 'log' must be private and have accessor methods. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error design VisibilityModifier Variable 'ctx' must be private and have accessor methods. 18
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error coding HiddenField 'ctx' hides a field. 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error design DesignForExtension Method 'getJndiProperty' is not designed for extension - needs to be abstract, final or empty. 22
 Error javadoc JavadocMethod Missing a Javadoc comment. 22
 Error misc FinalParameters Parameter name should be final. 22
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 23
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 23
 Error blocks RightCurly '}' should be on the same line. 27
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error coding AvoidInlineConditionals Avoid inline conditionals. 33
 Error design DesignForExtension Method 'getCtxProperty' is not designed for extension - needs to be abstract, final or empty. 36
 Error javadoc JavadocMethod Missing a Javadoc comment. 36
 Error misc FinalParameters Parameter name should be final. 36
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 37
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 37
 Error blocks RightCurly '}' should be on the same line. 40
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error coding AvoidInlineConditionals Avoid inline conditionals. 45
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error design DesignForExtension Method 'getEnv' is not designed for extension - needs to be abstract, final or empty. 48
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 50
 Error sizes LineLength Line is longer than 80 characters (found 97). 51
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 51
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 51
 Error regexp RegexpSingleline Line has trailing spaces. 55

ejava/examples/jndidemo/ejb/TrainSchedulerEJB.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 26
 Error blocks LeftCurly '{' should have line break after. 26
 Error javadoc JavadocStyle First sentence should end with a period. 28
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error javadoc JavadocStyle First sentence should end with a period. 34
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error javadoc JavadocStyle First sentence should end with a period. 40
 Error design VisibilityModifier Variable 'schedulerDAO' must be private and have accessor methods. 44
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error javadoc JavadocStyle First sentence should end with a period. 46
 Error design VisibilityModifier Variable 'jpaSchedulerDAOImpl' must be private and have accessor methods. 50
 Error javadoc JavadocStyle First sentence should end with a period. 52
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error design VisibilityModifier Variable 'cook' must be private and have accessor methods. 56
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error design VisibilityModifier Variable 'anyCook' must be private and have accessor methods. 63
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error javadoc JavadocStyle First sentence should end with a period. 65
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error design VisibilityModifier Variable 'cook2' must be private and have accessor methods. 68
 Error javadoc JavadocStyle First sentence should end with a period. 70
 Error design VisibilityModifier Variable 'message' must be private and have accessor methods. 74
 Error design DesignForExtension Method 'setSessionContext' is not designed for extension - needs to be abstract, final or empty. 76
 Error javadoc JavadocMethod Missing a Javadoc comment. 76
 Error misc FinalParameters Parameter ctx should be final. 77
 Error design DesignForExtension Method 'init' is not designed for extension - needs to be abstract, final or empty. 81
 Error javadoc JavadocMethod Missing a Javadoc comment. 81
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error sizes LineLength Line is longer than 80 characters (found 82). 83

ejava/examples/jndidemo/ejb/TrainSchedulerRemote.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 7