Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
16 0 0 727

Rules

Category Rule Violations Severity
blocks LeftCurly 50  Error
coding AvoidInlineConditionals 28  Error
HiddenField 36  Error
MagicNumber 9  Error
design DesignForExtension 87  Error
VisibilityModifier 2  Error
imports AvoidStarImport 4  Error
UnusedImports
  • processJavadoc: "false"
1  Error
javadoc JavadocMethod 56  Error
JavadocPackage 3  Error
JavadocType 16  Error
JavadocVariable 32  Error
misc FinalParameters 87  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
79  Error
sizes LineLength 28  Error
whitespace OperatorWrap 11  Error
WhitespaceAfter 1  Error
WhitespaceAround 197  Error

Details

org/myorg/jpatickets/bl/EventMgmt.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error javadoc JavadocMethod Missing a Javadoc comment. 11
 Error javadoc JavadocMethod Missing a Javadoc comment. 12
 Error sizes LineLength Line is longer than 80 characters (found 108). 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error sizes LineLength Line is longer than 80 characters (found 89). 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 17

org/myorg/jpatickets/bl/EventMgmtImpl.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error regexp RegexpSingleline Line has trailing spaces. 16
 Error design DesignForExtension Method 'setEventDAO' is not designed for extension - needs to be abstract, final or empty. 17
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error misc FinalParameters Parameter edao should be final. 17
 Error coding HiddenField 'edao' hides a field. 17
 Error design DesignForExtension Method 'setVenueDAO' 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 vdao should be final. 20
 Error coding HiddenField 'vdao' hides a field. 20
 Error design DesignForExtension Method 'createEvent' is not designed for extension - needs to be abstract, final or empty. 24
 Error sizes LineLength Line is longer than 80 characters (found 84). 25
 Error misc FinalParameters Parameter event should be final. 25
 Error misc FinalParameters Parameter venue should be final. 25
 Error coding MagicNumber '1000' is a magic number. 26
 Error whitespace WhitespaceAround '*' is not preceded with whitespace. 30
 Error whitespace WhitespaceAround '*' is not followed by whitespace. 30
 Error coding MagicNumber '.1' is a magic number. 30
 Error design DesignForExtension Method 'getEvent' is not designed for extension - needs to be abstract, final or empty. 37
 Error misc FinalParameters Parameter id should be final. 38
 Error design DesignForExtension Method 'fetchEventTickets' is not designed for extension - needs to be abstract, final or empty. 41
 Error misc FinalParameters Parameter id should be final. 42
 Error design DesignForExtension Method 'fetchEventTicketsSeats' is not designed for extension - needs to be abstract, final or empty. 45
 Error misc FinalParameters Parameter id should be final. 46
 Error design DesignForExtension Method 'findSeats' is not designed for extension - needs to be abstract, final or empty. 50
 Error sizes LineLength Line is longer than 80 characters (found 116). 51
 Error misc FinalParameters Parameter event should be final. 51
 Error misc FinalParameters Parameter section should be final. 51
 Error misc FinalParameters Parameter row should be final. 51
 Error misc FinalParameters Parameter position should be final. 51
 Error misc FinalParameters Parameter offset should be final. 51
 Error misc FinalParameters Parameter limit should be final. 51
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error design DesignForExtension Method 'getTickets' is not designed for extension - needs to be abstract, final or empty. 55
 Error misc FinalParameters Parameter event should be final. 56
 Error misc FinalParameters Parameter seats should be final. 56
 Error design DesignForExtension Method 'reserveSeats' is not designed for extension - needs to be abstract, final or empty. 60
 Error sizes LineLength Line is longer than 80 characters (found 97). 61
 Error misc FinalParameters Parameter event should be final. 61
 Error misc FinalParameters Parameter seats should be final. 61
 Error sizes LineLength Line is longer than 80 characters (found 85). 62
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 62
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 62
 Error blocks LeftCurly '{' at column 26 should have line break after. 62
 Error sizes LineLength Line is longer than 80 characters (found 84). 63
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 63
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 63
 Error blocks LeftCurly '{' at column 26 should have line break after. 63
 Error sizes LineLength Line is longer than 80 characters (found 104). 68

org/myorg/jpatickets/bl/UnavailableException.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 3
 Error sizes LineLength Line is longer than 80 characters (found 91). 6
 Error misc FinalParameters Parameter message should be final. 6
 Error misc FinalParameters Parameter cause should be final. 6
 Error blocks LeftCurly '{' at column 66 should have line break after. 6
 Error misc FinalParameters Parameter message should be final. 8
 Error blocks LeftCurly '{' at column 49 should have line break after. 8

org/myorg/jpatickets/bl/VenueMgmt.java

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

org/myorg/jpatickets/bl/VenueMgmtImpl.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error design VisibilityModifier Variable 'dao' must be private and have accessor methods. 12
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error design DesignForExtension Method 'setDao' 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 dao should be final. 14
 Error coding HiddenField 'dao' hides a field. 14
 Error design DesignForExtension Method 'createVenue' is not designed for extension - needs to be abstract, final or empty. 18
 Error sizes LineLength Line is longer than 80 characters (found 82). 19
 Error misc FinalParameters Parameter venue should be final. 19
 Error misc FinalParameters Parameter sections should be final. 19
 Error misc FinalParameters Parameter positions should be final. 19
 Error misc FinalParameters Parameter rows should be final. 19
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 21
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 21
 Error whitespace WhitespaceAround '<' is not preceded with whitespace. 21
 Error whitespace WhitespaceAround '<' is not followed by whitespace. 21
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 22
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 22
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 22
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 23
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 23
 Error whitespace WhitespaceAround '<' is not preceded with whitespace. 23
 Error whitespace WhitespaceAround '<' is not followed by whitespace. 23
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 24
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 24
 Error whitespace WhitespaceAround '<' is not preceded with whitespace. 24
 Error whitespace WhitespaceAround '<' is not followed by whitespace. 24
 Error design DesignForExtension Method 'getVenue' is not designed for extension - needs to be abstract, final or empty. 34
 Error misc FinalParameters Parameter venueId should be final. 35

org/myorg/jpatickets/bo/Address.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 11
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 11
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 11
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 11
 Error coding MagicNumber '20' is a magic number. 11
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error coding MagicNumber '20' is a magic number. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 17
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 17
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error design DesignForExtension Method 'getStreet' is not designed for extension - needs to be abstract, final or empty. 20
 Error blocks LeftCurly '{' at column 31 should have line break after. 20
 Error design DesignForExtension Method 'setStreet' 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 street should be final. 21
 Error coding HiddenField 'street' hides a field. 21
 Error design DesignForExtension Method 'withStreet' 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 street should be final. 24
 Error coding HiddenField 'street' hides a field. 24
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'getCity' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' at column 29 should have line break after. 29
 Error design DesignForExtension Method 'setCity' 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 city should be final. 30
 Error coding HiddenField 'city' hides a field. 30
 Error design DesignForExtension Method 'withCity' is not designed for extension - needs to be abstract, final or empty. 33
 Error javadoc JavadocMethod Missing a Javadoc comment. 33
 Error misc FinalParameters Parameter city should be final. 33
 Error coding HiddenField 'city' hides a field. 33
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error design DesignForExtension Method 'getState' is not designed for extension - needs to be abstract, final or empty. 38
 Error blocks LeftCurly '{' at column 30 should have line break after. 38
 Error design DesignForExtension Method 'setState' 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 state should be final. 39
 Error coding HiddenField 'state' hides a field. 39
 Error design DesignForExtension Method 'withState' is not designed for extension - needs to be abstract, final or empty. 42
 Error javadoc JavadocMethod Missing a Javadoc comment. 42
 Error misc FinalParameters Parameter state should be final. 42
 Error coding HiddenField 'state' hides a field. 42
 Error design DesignForExtension Method 'getZipCode' is not designed for extension - needs to be abstract, final or empty. 47
 Error blocks LeftCurly '{' at column 29 should have line break after. 47
 Error design DesignForExtension Method 'setZipCode' is not designed for extension - needs to be abstract, final or empty. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error misc FinalParameters Parameter zipCode should be final. 48
 Error coding HiddenField 'zipCode' hides a field. 48
 Error design DesignForExtension Method 'withZipCode' is not designed for extension - needs to be abstract, final or empty. 51
 Error javadoc JavadocMethod Missing a Javadoc comment. 51
 Error misc FinalParameters Parameter zipCode should be final. 51
 Error coding HiddenField 'zipCode' hides a field. 51
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 57
 Error coding AvoidInlineConditionals Avoid inline conditionals. 61
 Error coding AvoidInlineConditionals Avoid inline conditionals. 62
 Error coding AvoidInlineConditionals Avoid inline conditionals. 63
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 69
 Error misc FinalParameters Parameter obj should be final. 70
 Error blocks LeftCurly '{' at column 26 should have line break after. 71
 Error blocks LeftCurly '{' at column 26 should have line break after. 72
 Error blocks LeftCurly '{' at column 43 should have line break after. 73
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error coding AvoidInlineConditionals Avoid inline conditionals. 76
 Error whitespace OperatorWrap '&&' should be on a new line. 76
 Error coding AvoidInlineConditionals Avoid inline conditionals. 77
 Error whitespace OperatorWrap '&&' should be on a new line. 77
 Error sizes LineLength Line is longer than 80 characters (found 84). 78
 Error coding AvoidInlineConditionals Avoid inline conditionals. 78
 Error whitespace OperatorWrap '&&' should be on a new line. 78
 Error regexp RegexpSingleline Line has trailing spaces. 81
 Error regexp RegexpSingleline Line has trailing spaces. 82

org/myorg/jpatickets/bo/Event.java

Severity Category Rule Message Line
 Error imports UnusedImports Unused import - java.io.Serializable. 3
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 8
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 19
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 19
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 26
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 26
 Error sizes LineLength Line is longer than 80 characters (found 95). 27
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 27
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 27
 Error sizes LineLength Line is longer than 80 characters (found 87). 30
 Error sizes LineLength Line is longer than 80 characters (found 90). 31
 Error sizes LineLength Line is longer than 80 characters (found 112). 33
 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. 37
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 37
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 38
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 38
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 39
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 39
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 41
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 41
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 42
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 42
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 42
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 42
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 43
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 43
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 43
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 49
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 49
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 52
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 52
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 52
 Error coding MagicNumber '40' is a magic number. 52
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 52
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 52
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 52
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 55
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 55
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 55
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 55
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 56
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 56
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 56
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 56
 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. 59
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 60
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 60
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error sizes LineLength Line is longer than 80 characters (found 83). 63
 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 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 javadoc JavadocMethod Missing a Javadoc comment. 66
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error misc FinalParameters Parameter venue should be final. 67
 Error coding HiddenField 'venue' hides a field. 67
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 68
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 68
 Error misc FinalParameters Parameter id should be final. 70
 Error coding HiddenField 'id' hides a field. 70
 Error blocks LeftCurly '{' at column 26 should have line break after. 70
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 70
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 70
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 72
 Error blocks LeftCurly '{' at column 24 should have line break after. 72
 Error design DesignForExtension Method 'getVenue' is not designed for extension - needs to be abstract, final or empty. 73
 Error blocks LeftCurly '{' at column 29 should have line break after. 73
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 75
 Error blocks LeftCurly '{' at column 29 should have line break after. 75
 Error design DesignForExtension Method 'setName' 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 name should be final. 76
 Error coding HiddenField 'name' hides a field. 76
 Error design DesignForExtension Method 'withName' is not designed for extension - needs to be abstract, final or empty. 79
 Error javadoc JavadocMethod Missing a Javadoc comment. 79
 Error misc FinalParameters Parameter name should be final. 79
 Error coding HiddenField 'name' hides a field. 79
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error design DesignForExtension Method 'getStartTime' is not designed for extension - needs to be abstract, final or empty. 84
 Error blocks LeftCurly '{' at column 32 should have line break after. 84
 Error design DesignForExtension Method 'setStartTime' is not designed for extension - needs to be abstract, final or empty. 85
 Error javadoc JavadocMethod Missing a Javadoc comment. 85
 Error misc FinalParameters Parameter startTime should be final. 85
 Error coding HiddenField 'startTime' hides a field. 85
 Error design DesignForExtension Method 'withStartTime' is not designed for extension - needs to be abstract, final or empty. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter startTime should be final. 88
 Error coding HiddenField 'startTime' hides a field. 88
 Error design DesignForExtension Method 'getTickets' is not designed for extension - needs to be abstract, final or empty. 93
 Error blocks LeftCurly '{' at column 38 should have line break after. 93
 Error design DesignForExtension Method 'setTickets' is not designed for extension - needs to be abstract, final or empty. 94
 Error javadoc JavadocMethod Missing a Javadoc comment. 94
 Error misc FinalParameters Parameter tickets should be final. 94
 Error coding HiddenField 'tickets' hides a field. 94
 Error design DesignForExtension Method 'withTicket' is not designed for extension - needs to be abstract, final or empty. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter ticket should be final. 97
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 98
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 98
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 101
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 101
 Error regexp RegexpSingleline Line has trailing spaces. 106
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 107
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 112
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 112
 Error coding AvoidInlineConditionals Avoid inline conditionals. 112

org/myorg/jpatickets/bo/Seat.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 5
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 Error regexp RegexpSingleline Line has trailing spaces. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 19
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 19
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error javadoc JavadocMethod Missing a Javadoc comment. 23
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 23
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 23
 Error javadoc JavadocMethod Missing a Javadoc comment. 24
 Error misc FinalParameters Parameter venue should be final. 24
 Error coding HiddenField 'venue' hides a field. 24
 Error misc FinalParameters Parameter section should be final. 24
 Error misc FinalParameters Parameter row should be final. 24
 Error misc FinalParameters Parameter position should be final. 24
 Error sizes LineLength Line is longer than 80 characters (found 89). 26
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 26
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 26
 Error coding AvoidInlineConditionals Avoid inline conditionals. 26
 Error design DesignForExtension Method 'getVenue' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' at column 32 should have line break after. 29
 Error design DesignForExtension Method 'getVenueId' is not designed for extension - needs to be abstract, final or empty. 30
 Error blocks LeftCurly '{' at column 32 should have line break after. 30
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 30
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 30
 Error coding AvoidInlineConditionals Avoid inline conditionals. 30
 Error design DesignForExtension Method 'getSection' is not designed for extension - needs to be abstract, final or empty. 31
 Error blocks LeftCurly '{' at column 32 should have line break after. 31
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 31
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 31
 Error coding AvoidInlineConditionals Avoid inline conditionals. 31
 Error design DesignForExtension Method 'getRow' is not designed for extension - needs to be abstract, final or empty. 32
 Error blocks LeftCurly '{' at column 32 should have line break after. 32
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 32
 Error coding AvoidInlineConditionals Avoid inline conditionals. 32
 Error design DesignForExtension Method 'getPosition' is not designed for extension - needs to be abstract, final or empty. 33
 Error blocks LeftCurly '{' at column 32 should have line break after. 33
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 33
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 33
 Error coding AvoidInlineConditionals Avoid inline conditionals. 33
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 35
 Error sizes LineLength Line is longer than 80 characters (found 89). 41
 Error coding AvoidInlineConditionals Avoid inline conditionals. 41
 Error sizes LineLength Line is longer than 80 characters (found 89). 42
 Error coding AvoidInlineConditionals Avoid inline conditionals. 42
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 46
 Error misc FinalParameters Parameter obj should be final. 47
 Error blocks LeftCurly '{' at column 26 should have line break after. 48
 Error blocks LeftCurly '{' at column 26 should have line break after. 49
 Error blocks LeftCurly '{' at column 43 should have line break after. 50
 Error whitespace OperatorWrap '&&' should be on a new line. 52
 Error whitespace OperatorWrap '&&' should be on a new line. 53
 Error sizes LineLength Line is longer than 80 characters (found 105). 54
 Error coding AvoidInlineConditionals Avoid inline conditionals. 54
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 54
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 54
 Error whitespace OperatorWrap '&&' should be on a new line. 54
 Error sizes LineLength Line is longer than 80 characters (found 103). 55
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 55
 Error coding AvoidInlineConditionals Avoid inline conditionals. 55
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 55
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 55
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 59

org/myorg/jpatickets/bo/SeatPK.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error coding MagicNumber '6' is a magic number. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 17
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 17
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 20
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 20
 Error javadoc JavadocMethod Missing a Javadoc comment. 22
 Error misc FinalParameters Parameter venueId should be final. 22
 Error coding HiddenField 'venueId' hides a field. 22
 Error misc FinalParameters Parameter section should be final. 22
 Error coding HiddenField 'section' hides a field. 22
 Error misc FinalParameters Parameter row should be final. 22
 Error coding HiddenField 'row' hides a field. 22
 Error misc FinalParameters Parameter position should be final. 22
 Error coding HiddenField 'position' hides a field. 22
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'getVenueId' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' at column 32 should have line break after. 29
 Error design DesignForExtension Method 'getSection' is not designed for extension - needs to be abstract, final or empty. 30
 Error blocks LeftCurly '{' at column 32 should have line break after. 30
 Error design DesignForExtension Method 'getRow' is not designed for extension - needs to be abstract, final or empty. 31
 Error blocks LeftCurly '{' at column 25 should have line break after. 31
 Error design DesignForExtension Method 'getPosition' is not designed for extension - needs to be abstract, final or empty. 32
 Error blocks LeftCurly '{' at column 30 should have line break after. 32
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 34
 Error coding AvoidInlineConditionals Avoid inline conditionals. 40
 Error coding AvoidInlineConditionals Avoid inline conditionals. 41
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 45
 Error misc FinalParameters Parameter obj should be final. 46
 Error blocks LeftCurly '{' at column 26 should have line break after. 47
 Error blocks LeftCurly '{' at column 26 should have line break after. 48
 Error blocks LeftCurly '{' at column 43 should have line break after. 49
 Error whitespace OperatorWrap '&&' should be on a new line. 51
 Error whitespace OperatorWrap '&&' should be on a new line. 52
 Error sizes LineLength Line is longer than 80 characters (found 85). 53
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 53
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 53
 Error coding AvoidInlineConditionals Avoid inline conditionals. 53
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 53
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 53
 Error whitespace OperatorWrap '&&' should be on a new line. 53
 Error sizes LineLength Line is longer than 80 characters (found 82). 54
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 54
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 54
 Error coding AvoidInlineConditionals Avoid inline conditionals. 54
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 54
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 54
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 57
 Error regexp RegexpSingleline Line has trailing spaces. 68

org/myorg/jpatickets/bo/Ticket.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 10
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 10
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 19
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 19
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error javadoc JavadocVariable Missing a Javadoc comment. 22
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 25
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 25
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 26
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 26
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 28
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 28
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 29
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 29
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 30
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 30
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 31
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 31
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 35
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 35
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 35
 Error coding MagicNumber '7' is a magic number. 35
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 35
 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. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 38
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 38
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 38
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 38
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error javadoc JavadocMethod Missing a Javadoc comment. 41
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 41
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 41
 Error javadoc JavadocMethod Missing a Javadoc comment. 42
 Error misc FinalParameters Parameter event should be final. 42
 Error coding HiddenField 'event' hides a field. 42
 Error misc FinalParameters Parameter seat should be final. 42
 Error coding HiddenField 'seat' hides a field. 42
 Error design DesignForExtension Method 'getEvent' is not designed for extension - needs to be abstract, final or empty. 47
 Error blocks LeftCurly '{' at column 31 should have line break after. 47
 Error design DesignForExtension Method 'getSeat' is not designed for extension - needs to be abstract, final or empty. 48
 Error blocks LeftCurly '{' at column 31 should have line break after. 48
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error design DesignForExtension Method 'getPrice' is not designed for extension - needs to be abstract, final or empty. 50
 Error blocks LeftCurly '{' at column 34 should have line break after. 50
 Error design DesignForExtension Method 'setPrice' is not designed for extension - needs to be abstract, final or empty. 51
 Error javadoc JavadocMethod Missing a Javadoc comment. 51
 Error misc FinalParameters Parameter price should be final. 51
 Error coding HiddenField 'price' hides a field. 51
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error design DesignForExtension Method 'isSold' is not designed for extension - needs to be abstract, final or empty. 55
 Error blocks LeftCurly '{' at column 29 should have line break after. 55
 Error design DesignForExtension Method 'setSold' is not designed for extension - needs to be abstract, final or empty. 56
 Error javadoc JavadocMethod Missing a Javadoc comment. 56
 Error misc FinalParameters Parameter sold should be final. 56
 Error coding HiddenField 'sold' hides a field. 56
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 60
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error regexp RegexpSingleline Line has trailing spaces. 71

org/myorg/jpatickets/bo/TicketPK.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 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 regexp RegexpSingleline Line has trailing spaces. 10
 Error javadoc JavadocMethod Missing a Javadoc comment. 10
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 10
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 10
 Error javadoc JavadocMethod Missing a Javadoc comment. 11
 Error misc FinalParameters Parameter event should be final. 11
 Error coding HiddenField 'event' hides a field. 11
 Error misc FinalParameters Parameter seat should be final. 11
 Error coding HiddenField 'seat' hides a field. 11
 Error design DesignForExtension Method 'getEventId' is not designed for extension - needs to be abstract, final or empty. 16
 Error blocks LeftCurly '{' at column 29 should have line break after. 16
 Error design DesignForExtension Method 'getSeatId' is not designed for extension - needs to be abstract, final or empty. 17
 Error blocks LeftCurly '{' at column 31 should have line break after. 17
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 20
 Error coding AvoidInlineConditionals Avoid inline conditionals. 25
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 29
 Error misc FinalParameters Parameter obj should be final. 30
 Error blocks LeftCurly '{' at column 26 should have line break after. 31
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error blocks LeftCurly '{' at column 26 should have line break after. 32
 Error blocks LeftCurly '{' at column 43 should have line break after. 33
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error whitespace OperatorWrap '&&' should be on a new line. 36
 Error coding AvoidInlineConditionals Avoid inline conditionals. 37
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 41

org/myorg/jpatickets/bo/Venue.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 5
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 Error javadoc JavadocVariable Missing a Javadoc comment. 11
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 12
 Error coding MagicNumber '3' is a magic number. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error coding MagicNumber '20' is a magic number. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 15
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 15
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error javadoc JavadocMethod Missing a Javadoc comment. 21
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 21
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error misc FinalParameters Parameter id should be final. 22
 Error coding HiddenField 'id' hides a field. 22
 Error blocks LeftCurly '{' at column 29 should have line break after. 22
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 23
 Error blocks LeftCurly '{' at column 27 should have line break after. 23
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 25
 Error blocks LeftCurly '{' at column 29 should have line break after. 25
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 26
 Error misc FinalParameters Parameter name should be final. 26
 Error coding HiddenField 'name' hides a field. 26
 Error design DesignForExtension Method 'withName' is not designed for extension - needs to be abstract, final or empty. 29
 Error javadoc JavadocMethod Missing a Javadoc comment. 29
 Error misc FinalParameters Parameter name should be final. 29
 Error coding HiddenField 'name' hides a field. 29
 Error design DesignForExtension Method 'getAddress' is not designed for extension - needs to be abstract, final or empty. 34
 Error blocks LeftCurly '{' at column 33 should have line break after. 34
 Error design DesignForExtension Method 'setAddress' 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 address should be final. 35
 Error coding HiddenField 'address' hides a field. 35
 Error design DesignForExtension Method 'withAddress' is not designed for extension - needs to be abstract, final or empty. 38
 Error javadoc JavadocMethod Missing a Javadoc comment. 38
 Error misc FinalParameters Parameter address should be final. 38
 Error coding HiddenField 'address' hides a field. 38
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 43
 Error coding AvoidInlineConditionals Avoid inline conditionals. 47
 Error coding AvoidInlineConditionals Avoid inline conditionals. 48
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 52
 Error misc FinalParameters Parameter obj should be final. 53
 Error blocks LeftCurly '{' at column 26 should have line break after. 54
 Error blocks LeftCurly '{' at column 26 should have line break after. 55
 Error blocks LeftCurly '{' at column 43 should have line break after. 56
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error coding AvoidInlineConditionals Avoid inline conditionals. 59
 Error whitespace OperatorWrap '&&' should be on a new line. 59
 Error coding AvoidInlineConditionals Avoid inline conditionals. 60
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 63

org/myorg/jpatickets/dao/EventMgmtDAO.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error javadoc JavadocMethod Missing a Javadoc comment. 19
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error javadoc JavadocMethod Missing a Javadoc comment. 21
 Error javadoc JavadocMethod Missing a Javadoc comment. 22
 Error javadoc JavadocMethod Missing a Javadoc comment. 23

org/myorg/jpatickets/dao/EventMgmtDAOImpl.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 Error design VisibilityModifier Variable 'em' must be private and have accessor methods. 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error design DesignForExtension Method 'setEntityManager' is not designed for extension - needs to be abstract, final or empty. 23
 Error javadoc JavadocMethod Missing a Javadoc comment. 23
 Error misc FinalParameters Parameter em should be final. 23
 Error coding HiddenField 'em' hides a field. 23
 Error design DesignForExtension Method 'createEvent' is not designed for extension - needs to be abstract, final or empty. 27
 Error misc FinalParameters Parameter event should be final. 28
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error design DesignForExtension Method 'getEvent' is not designed for extension - needs to be abstract, final or empty. 33
 Error misc FinalParameters Parameter eventId should be final. 34
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error design DesignForExtension Method 'fetchEventTickets' is not designed for extension - needs to be abstract, final or empty. 38
 Error misc FinalParameters Parameter id should be final. 39
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error sizes LineLength Line is longer than 80 characters (found 85). 40
 Error coding AvoidInlineConditionals Avoid inline conditionals. 44
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error design DesignForExtension Method 'fetchEventTicketsSeats' is not designed for extension - needs to be abstract, final or empty. 47
 Error misc FinalParameters Parameter id should be final. 48
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error sizes LineLength Line is longer than 80 characters (found 90). 49
 Error coding AvoidInlineConditionals Avoid inline conditionals. 53
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error design DesignForExtension Method 'fetchEventDTOData' is not designed for extension - needs to be abstract, final or empty. 56
 Error misc FinalParameters Parameter eventId should be final. 57
 Error sizes LineLength Line is longer than 80 characters (found 81). 59
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error design DesignForExtension Method 'findSeats' is not designed for extension - needs to be abstract, final or empty. 76
 Error misc FinalParameters Parameter event should be final. 77
 Error misc FinalParameters Parameter section should be final. 77
 Error misc FinalParameters Parameter row should be final. 77
 Error misc FinalParameters Parameter position should be final. 78
 Error misc FinalParameters Parameter offset should be final. 78
 Error misc FinalParameters Parameter limit should be final. 78
 Error regexp RegexpSingleline Line has trailing spaces. 84
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 90
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 93
 Error regexp RegexpSingleline Line has trailing spaces. 96
 Error sizes LineLength Line is longer than 80 characters (found 95). 97
 Error regexp RegexpSingleline Line has trailing spaces. 105
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error design DesignForExtension Method 'findTickets' is not designed for extension - needs to be abstract, final or empty. 109
 Error misc FinalParameters Parameter event should be final. 110
 Error misc FinalParameters Parameter seats should be final. 110
 Error regexp RegexpSingleline Line has trailing spaces. 111

org/myorg/jpatickets/dao/VenueDAO.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error javadoc JavadocMethod Missing a Javadoc comment. 9
 Error javadoc JavadocMethod Missing a Javadoc comment. 10
 Error javadoc JavadocMethod Missing a Javadoc comment. 11

org/myorg/jpatickets/dao/VenueDAOImpl.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error design DesignForExtension Method 'setEntityManager' 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 em should be final. 15
 Error coding HiddenField 'em' hides a field. 15
 Error design DesignForExtension Method 'saveVenue' is not designed for extension - needs to be abstract, final or empty. 19
 Error misc FinalParameters Parameter venue should be final. 20
 Error misc FinalParameters Parameter seats should be final. 20
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 23
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 23
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error design DesignForExtension Method 'getVenue' 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 venueId should be final. 31
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error design DesignForExtension Method 'getSeatsForVenue' is not designed for extension - needs to be abstract, final or empty. 35
 Error misc FinalParameters Parameter venue should be final. 36
 Error misc FinalParameters Parameter offset should be final. 36
 Error misc FinalParameters Parameter limit should be final. 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error sizes LineLength Line is longer than 80 characters (found 87). 37
 Error blocks LeftCurly '{' at column 25 should have line break after. 40
 Error blocks LeftCurly '{' at column 24 should have line break after. 41