Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
32 0 0 1399

Files

File  I  W  E
ejava/examples/orm/map/annotated/ManyManyEntity.java 0 0 22
ejava/examples/orm/map/annotated/ManyManyInverseEntity.java 0 0 34
ejava/examples/orm/map/annotated/ManyManyOwningEntity.java 0 0 43
ejava/examples/orm/map/annotated/OneManyChild.java 0 0 22
ejava/examples/orm/map/annotated/OneManyInverseParent.java 0 0 30
ejava/examples/orm/map/annotated/OneManyOwningChild.java 0 0 26
ejava/examples/orm/map/annotated/OneManyOwningParent.java 0 0 47
ejava/examples/orm/onetomany/annotated/OneManyChild.java 0 0 36
ejava/examples/orm/onetomany/annotated/OneManyOwningParent.java 0 0 45
ejava/examples/orm/rel/MediaCopyPK.java 0 0 44
ejava/examples/orm/rel/MediaCopyPK2.java 0 0 38
ejava/examples/orm/rel/annotated/Applicant.java 0 0 48
ejava/examples/orm/rel/annotated/Author.java 0 0 44
ejava/examples/orm/rel/annotated/Borrower.java 0 0 91
ejava/examples/orm/rel/annotated/Checkout.java 0 0 64
ejava/examples/orm/rel/annotated/Inventory.java 0 0 36
ejava/examples/orm/rel/annotated/Library.java 0 0 34
ejava/examples/orm/rel/annotated/Media.java 0 0 41
ejava/examples/orm/rel/annotated/MediaCopy.java 0 0 59
ejava/examples/orm/rel/annotated/MediaCopy2.java 0 0 52
ejava/examples/orm/rel/annotated/Person.java 0 0 56
ejava/examples/orm/rel/annotated/Photo.java 0 0 35
ejava/examples/orm/rel/annotated/WantList.java 0 0 19
ejava/examples/orm/rel/composite/Door.java 0 0 49
ejava/examples/orm/rel/composite/DoorPK.java 0 0 47
ejava/examples/orm/rel/composite/House.java 0 0 69
ejava/examples/orm/rel/composite/Mortgage.java 0 0 39
ejava/examples/orm/rel/composite/MortgagePK.java 0 0 47
ejava/examples/orm/rel/composite/Resident.java 0 0 41
ejava/examples/orm/rel/composite/ResidentPK.java 0 0 44
ejava/examples/orm/rel/composite/Room.java 0 0 49
ejava/examples/orm/rel/composite/RoomPK.java 0 0 48

Rules

Category Rule Violations Severity
blocks LeftCurly 113  Error
NeedBraces 2  Error
RightCurly 15  Error
coding AvoidInlineConditionals 5  Error
HiddenField 75  Error
MagicNumber 5  Error
design DesignForExtension 152  Error
imports AvoidStarImport 26  Error
javadoc JavadocMethod 110  Error
JavadocPackage 5  Error
JavadocType 8  Error
JavadocVariable 96  Error
misc FinalParameters 91  Error
naming ConstantName 2  Error
StaticVariableName 1  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
195  Error
sizes LineLength 18  Error
whitespace FileTabCharacter 13  Error
OperatorWrap 32  Error
WhitespaceAfter 12  Error
WhitespaceAround 423  Error

Details

ejava/examples/orm/map/annotated/ManyManyEntity.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 6
 Error regexp RegexpSingleline Line has trailing spaces. 7
 Error regexp RegexpSingleline Line has trailing spaces. 8
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 11
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error misc FinalParameters Parameter name should be final. 17
 Error coding HiddenField 'name' hides a field. 17
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 21
 Error blocks LeftCurly '{' should have line break after. 21
 Error design DesignForExtension Method 'setName' 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 coding HiddenField 'name' hides a field. 22
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 26

ejava/examples/orm/map/annotated/ManyManyInverseEntity.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error regexp RegexpSingleline Line has trailing spaces. 11
 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. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 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 sizes LineLength Line is longer than 80 characters (found 108). 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 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 misc FinalParameters Parameter name should be final. 24
 Error coding HiddenField 'name' hides a field. 24
 Error blocks LeftCurly '{' should have line break after. 24
 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 sizes LineLength Line is longer than 80 characters (found 93). 28
 Error design DesignForExtension Method 'getOwnedByEntities' is not designed for extension - needs to be abstract, final or empty. 28
 Error blocks LeftCurly '{' should have line break after. 28
 Error sizes LineLength Line is longer than 80 characters (found 87). 29
 Error design DesignForExtension Method 'setOwnedByEntities' 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 ownedByEntities should be final. 29
 Error coding HiddenField 'ownedByEntities' hides a field. 29
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 33
 Error javadoc JavadocMethod Missing a Javadoc comment. 33
 Error regexp RegexpSingleline Line has trailing spaces. 35

ejava/examples/orm/map/annotated/ManyManyOwningEntity.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 19
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 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. 27
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 27
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 29
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 29
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 29
 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 regexp RegexpSingleline Line has trailing spaces. 33
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 34
 Error blocks LeftCurly '{' should have line break after. 34
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error sizes LineLength Line is longer than 80 characters (found 83). 36
 Error design DesignForExtension Method 'getOwnedEntities' is not designed for extension - needs to be abstract, final or empty. 36
 Error blocks LeftCurly '{' should have line break after. 36
 Error design DesignForExtension Method 'setOwnedEntities' is not designed for extension - needs to be abstract, final or empty. 37
 Error javadoc JavadocMethod Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter ownedEntities should be final. 37
 Error coding HiddenField 'ownedEntities' hides a field. 37
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error sizes LineLength Line is longer than 80 characters (found 104). 41
 Error design DesignForExtension Method 'getOwnedInverseEntities' is not designed for extension - needs to be abstract, final or empty. 41
 Error blocks LeftCurly '{' should have line break after. 41
 Error design DesignForExtension Method 'setOwnedInverseEntities' 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 ownedInverseEntities should be final. 43
 Error coding HiddenField 'ownedInverseEntities' hides a field. 43
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 47
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error regexp RegexpSingleline Line has trailing spaces. 57

ejava/examples/orm/map/annotated/OneManyChild.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 10
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 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 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 misc FinalParameters Parameter name should be final. 16
 Error coding HiddenField 'name' hides a field. 16
 Error blocks LeftCurly '{' should have line break after. 16
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 18
 Error blocks LeftCurly '{' should have line break after. 18
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 19
 Error javadoc JavadocMethod Missing a Javadoc comment. 19
 Error misc FinalParameters Parameter name should be final. 19
 Error coding HiddenField 'name' hides a field. 19
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 23
 Error javadoc JavadocMethod Missing a Javadoc comment. 23

ejava/examples/orm/map/annotated/OneManyInverseParent.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 10
 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. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 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 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 misc FinalParameters Parameter name should be final. 24
 Error coding HiddenField 'name' hides a field. 24
 Error blocks LeftCurly '{' should have line break after. 24
 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 regexp RegexpSingleline Line has trailing spaces. 27
 Error sizes LineLength Line is longer than 80 characters (found 91). 28
 Error design DesignForExtension Method 'getOwnedByChildren' is not designed for extension - needs to be abstract, final or empty. 28
 Error blocks LeftCurly '{' should have line break after. 28
 Error design DesignForExtension Method 'setOwnedByChildren' 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 ownedByChildren should be final. 30
 Error coding HiddenField 'ownedByChildren' hides a field. 30
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 34
 Error javadoc JavadocMethod Missing a Javadoc comment. 34
 Error regexp RegexpSingleline Line has trailing spaces. 36

ejava/examples/orm/map/annotated/OneManyOwningChild.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 4
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 10
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 14
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 15
 Error regexp RegexpSingleline Line has trailing spaces. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 17
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 17
 Error misc FinalParameters Parameter name should be final. 18
 Error coding HiddenField 'name' hides a field. 18
 Error blocks LeftCurly '{' should have line break after. 18
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 20
 Error blocks LeftCurly '{' should have line break after. 20
 Error sizes LineLength Line is longer than 80 characters (found 82). 22
 Error design DesignForExtension Method 'getOneInverseParent' is not designed for extension - needs to be abstract, final or empty. 22
 Error blocks LeftCurly '{' should have line break after. 22
 Error design DesignForExtension Method 'setOneInverseParent' 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 oneInverseParent should be final. 23
 Error coding HiddenField 'oneInverseParent' hides a field. 23
 Error regexp RegexpSingleline Line has trailing spaces. 26
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 27
 Error javadoc JavadocMethod Missing a Javadoc comment. 27

ejava/examples/orm/map/annotated/OneManyOwningParent.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 16
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 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. 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 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. 25
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 25
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 29
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 29
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 29
 Error misc FinalParameters Parameter name should be final. 30
 Error coding HiddenField 'name' hides a field. 30
 Error blocks LeftCurly '{' should have line break after. 30
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 32
 Error blocks LeftCurly '{' should have line break after. 32
 Error design DesignForExtension Method 'setName' 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 name should be final. 33
 Error coding HiddenField 'name' hides a field. 33
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error sizes LineLength Line is longer than 80 characters (found 81). 37
 Error design DesignForExtension Method 'getOwnedChildren' is not designed for extension - needs to be abstract, final or empty. 37
 Error blocks LeftCurly '{' should have line break after. 37
 Error design DesignForExtension Method 'setOwnedChildren' 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 ownedChildren should be final. 38
 Error coding HiddenField 'ownedChildren' hides a field. 38
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 42
 Error javadoc JavadocMethod Missing a Javadoc comment. 42
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 48

ejava/examples/orm/onetomany/annotated/OneManyChild.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 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. 11
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 16
 Error misc FinalParameters Parameter id should be final. 17
 Error coding HiddenField 'id' hides a field. 17
 Error blocks LeftCurly '{' should have line break after. 17
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 17
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 17
 Error misc FinalParameters Parameter name should be final. 18
 Error coding HiddenField 'name' hides a field. 18
 Error blocks LeftCurly '{' should have line break after. 18
 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 blocks LeftCurly '{' should have line break after. 21
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 23
 Error blocks LeftCurly '{' should have line break after. 23
 Error design DesignForExtension Method 'setName' 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 name should be final. 24
 Error coding HiddenField 'name' hides a field. 24
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 28

ejava/examples/orm/onetomany/annotated/OneManyOwningParent.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 10
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error regexp RegexpSingleline Line has trailing spaces. 116
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 120
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 120
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 120
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 120
 Error javadoc JavadocVariable Missing a Javadoc comment. 122
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 122
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 122
 Error javadoc JavadocVariable Missing a Javadoc comment. 125
 Error javadoc JavadocVariable Missing a Javadoc comment. 127
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 128
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 128
 Error regexp RegexpSingleline Line has trailing spaces. 132
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 133
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 133
 Error misc FinalParameters Parameter id should be final. 134
 Error coding HiddenField 'id' hides a field. 134
 Error blocks LeftCurly '{' should have line break after. 134
 Error misc FinalParameters Parameter name should be final. 135
 Error coding HiddenField 'name' hides a field. 135
 Error blocks LeftCurly '{' should have line break after. 135
 Error regexp RegexpSingleline Line has trailing spaces. 136
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 137
 Error blocks LeftCurly '{' should have line break after. 137
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 139
 Error blocks LeftCurly '{' should have line break after. 139
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 140
 Error javadoc JavadocMethod Missing a Javadoc comment. 140
 Error misc FinalParameters Parameter name should be final. 140
 Error coding HiddenField 'name' hides a field. 140
 Error design DesignForExtension Method 'getChildren' is not designed for extension - needs to be abstract, final or empty. 144
 Error blocks LeftCurly '{' should have line break after. 144
 Error design DesignForExtension Method 'setChildren' is not designed for extension - needs to be abstract, final or empty. 145
 Error javadoc JavadocMethod Missing a Javadoc comment. 145
 Error misc FinalParameters Parameter children should be final. 145
 Error coding HiddenField 'children' hides a field. 145
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 149
 Error javadoc JavadocMethod Missing a Javadoc comment. 149

ejava/examples/orm/rel/MediaCopyPK.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error javadoc JavadocVariable Missing a Javadoc comment. 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 9
 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. 11
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 11
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 11
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error misc FinalParameters Parameter mediaId should be final. 15
 Error coding HiddenField 'mediaId' hides a field. 15
 Error misc FinalParameters Parameter copyNo should be final. 15
 Error coding HiddenField 'copyNo' hides a field. 15
 Error design DesignForExtension Method 'getCopyNo' is not designed for extension - needs to be abstract, final or empty. 19
 Error blocks LeftCurly '{' should have line break after. 19
 Error design DesignForExtension Method 'setCopyNo' 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 copyNo should be final. 20
 Error coding HiddenField 'copyNo' hides a field. 20
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error design DesignForExtension Method 'getMediaId' is not designed for extension - needs to be abstract, final or empty. 24
 Error blocks LeftCurly '{' should have line break after. 24
 Error design DesignForExtension Method 'setMediaId' 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 mediaId should be final. 25
 Error coding HiddenField 'mediaId' hides a field. 25
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 29
 Error javadoc JavadocMethod Missing a Javadoc comment. 29
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 30
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 32
 Error javadoc JavadocMethod Missing a Javadoc comment. 32
 Error misc FinalParameters Parameter obj should be final. 32
 Error blocks NeedBraces 'if' construct must use '{}'s. 34
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 35
 Error whitespace OperatorWrap '&&' should be on a new line. 35
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 36
 Error blocks RightCurly '}' should be on the same line. 37

ejava/examples/orm/rel/MediaCopyPK2.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error javadoc JavadocVariable Missing a Javadoc comment. 6
 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 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 mediaId should be final. 11
 Error misc FinalParameters Parameter copyNo should be final. 11
 Error coding HiddenField 'copyNo' hides a field. 11
 Error design DesignForExtension Method 'getCopyNo' is not designed for extension - needs to be abstract, final or empty. 15
 Error blocks LeftCurly '{' should have line break after. 15
 Error design DesignForExtension Method 'setCopyNo' is not designed for extension - needs to be abstract, final or empty. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error misc FinalParameters Parameter copyNo should be final. 16
 Error coding HiddenField 'copyNo' hides a field. 16
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error design DesignForExtension Method 'getMediaId' is not designed for extension - needs to be abstract, final or empty. 20
 Error blocks LeftCurly '{' should have line break after. 20
 Error design DesignForExtension Method 'setMediaId' 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 mediaId should be final. 21
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 25
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 26
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error design DesignForExtension Method 'equals' 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 obj should be final. 28
 Error blocks NeedBraces 'if' construct must use '{}'s. 30
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 31
 Error whitespace OperatorWrap '&&' should be on a new line. 31
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 32
 Error blocks RightCurly '}' should be on the same line. 33

ejava/examples/orm/rel/annotated/Applicant.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 10
 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 javadoc JavadocVariable Missing a Javadoc comment. 18
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 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. 22
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 22
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 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 regexp RegexpSingleline Line has trailing spaces. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 29
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 32
 Error blocks LeftCurly '{' should have line break after. 32
 Error design DesignForExtension Method 'getBorrower' is not designed for extension - needs to be abstract, final or empty. 34
 Error blocks LeftCurly '{' should have line break after. 34
 Error design DesignForExtension Method 'setBorrower' 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 borrower should be final. 35
 Error coding HiddenField 'borrower' hides a field. 35
 Error design DesignForExtension Method 'getIdentity' is not designed for extension - needs to be abstract, final or empty. 39
 Error blocks LeftCurly '{' should have line break after. 39
 Error design DesignForExtension Method 'setIdentity' is not designed for extension - needs to be abstract, final or empty. 40
 Error javadoc JavadocMethod Missing a Javadoc comment. 40
 Error misc FinalParameters Parameter identity should be final. 40
 Error coding HiddenField 'identity' hides a field. 40
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error whitespace OperatorWrap '+' should be on a new line. 45
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error whitespace OperatorWrap '+' should be on a new line. 46
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 47
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 47
 Error coding AvoidInlineConditionals Avoid inline conditionals. 47
 Error whitespace OperatorWrap '+' should be on a new line. 47
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 48
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 48
 Error coding AvoidInlineConditionals Avoid inline conditionals. 48

ejava/examples/orm/rel/annotated/Author.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 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. 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 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 regexp RegexpSingleline Line has trailing spaces. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 27
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 27
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 27
 Error misc FinalParameters Parameter id should be final. 28
 Error coding HiddenField 'id' hides a field. 28
 Error blocks LeftCurly '{' should have line break after. 28
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 30
 Error blocks LeftCurly '{' should have line break after. 30
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error design DesignForExtension Method 'getMedia' is not designed for extension - needs to be abstract, final or empty. 32
 Error blocks LeftCurly '{' should have line break after. 32
 Error design DesignForExtension Method 'setMedia' 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 media should be final. 33
 Error coding HiddenField 'media' hides a field. 33
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 37
 Error blocks LeftCurly '{' should have line break after. 37
 Error design DesignForExtension Method 'setName' 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 name should be final. 38
 Error coding HiddenField 'name' hides a field. 38
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 42
 Error javadoc JavadocMethod Missing a Javadoc comment. 42

ejava/examples/orm/rel/annotated/Borrower.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 8
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 22
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 22
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 25
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 27
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 29
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 29
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 32
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 32
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 33
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 33
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 40
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 40
 Error regexp RegexpSingleline Line has trailing spaces. 41
 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 regexp RegexpSingleline Line has trailing spaces. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 45
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 45
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 46
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 46
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error blocks LeftCurly '{' should have line break after. 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 50
 Error misc FinalParameters Parameter identity should be final. 50
 Error coding HiddenField 'identity' hides a field. 50
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 56
 Error blocks LeftCurly '{' should have line break after. 56
 Error design DesignForExtension Method 'getEndDate' is not designed for extension - needs to be abstract, final or empty. 58
 Error blocks LeftCurly '{' should have line break after. 58
 Error design DesignForExtension Method 'setEndDate' is not designed for extension - needs to be abstract, final or empty. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error misc FinalParameters Parameter end should be final. 59
 Error design DesignForExtension Method 'getStartDate' is not designed for extension - needs to be abstract, final or empty. 63
 Error blocks LeftCurly '{' should have line break after. 63
 Error design DesignForExtension Method 'setStartDate' is not designed for extension - needs to be abstract, final or empty. 64
 Error javadoc JavadocMethod Missing a Javadoc comment. 64
 Error misc FinalParameters Parameter start should be final. 64
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error javadoc JavadocMethod Expected an @return tag. 74
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 74
 Error design DesignForExtension Method 'getApplication' is not designed for extension - needs to be abstract, final or empty. 78
 Error blocks LeftCurly '{' should have line break after. 78
 Error design DesignForExtension Method 'setApplication' 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 application should be final. 79
 Error coding HiddenField 'application' hides a field. 79
 Error design DesignForExtension Method 'getCheckouts' is not designed for extension - needs to be abstract, final or empty. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error design DesignForExtension Method 'addCheckout' is not designed for extension - needs to be abstract, final or empty. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error misc FinalParameters Parameter checkout should be final. 87
 Error design DesignForExtension Method 'removeCheckout' is not designed for extension - needs to be abstract, final or empty. 90
 Error javadoc JavadocMethod Missing a Javadoc comment. 90
 Error misc FinalParameters Parameter checkout should be final. 90
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 94
 Error javadoc JavadocMethod Missing a Javadoc comment. 94
 Error whitespace OperatorWrap '+' should be on a new line. 96
 Error whitespace OperatorWrap '+' should be on a new line. 97
 Error whitespace OperatorWrap '+' should be on a new line. 98
 Error whitespace OperatorWrap '+' should be on a new line. 99
 Error whitespace OperatorWrap '+' should be on a new line. 100
 Error whitespace OperatorWrap '+' should be on a new line. 101
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 103
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 103
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 103
 Error blocks LeftCurly '{' should have line break after. 105
 Error blocks RightCurly '}' should have line break before. 105

ejava/examples/orm/rel/annotated/Checkout.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. 10
 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 javadoc JavadocVariable Missing a Javadoc comment. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error naming StaticVariableName Name 'CHECKOUT_DAYS' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13
 Error coding MagicNumber '1000' is a magic number. 13
 Error coding MagicNumber '60' is a magic number. 13
 Error coding MagicNumber '60' is a magic number. 13
 Error coding MagicNumber '24' is a magic number. 13
 Error coding MagicNumber '14' is a magic number. 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. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 21
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 21
 Error javadoc JavadocVariable Missing a Javadoc comment. 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. 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 regexp RegexpSingleline Line has trailing spaces. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 27
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error javadoc JavadocMethod Missing a Javadoc comment. 30
 Error misc FinalParameters Parameter outDate should be final. 30
 Error coding HiddenField 'outDate' hides a field. 30
 Error design DesignForExtension Method 'isOverdue' is not designed for extension - needs to be abstract, final or empty. 34
 Error javadoc JavadocMethod Missing a Javadoc comment. 34
 Error whitespace OperatorWrap '?' should be on a new line. 35
 Error coding AvoidInlineConditionals Avoid inline conditionals. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error whitespace OperatorWrap ':' should be on a new line. 36
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 40
 Error blocks LeftCurly '{' should have line break after. 40
 Error design DesignForExtension Method 'getBorrower' is not designed for extension - needs to be abstract, final or empty. 42
 Error blocks LeftCurly '{' should have line break after. 42
 Error design DesignForExtension Method 'setBorrower' 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 borrower should be final. 43
 Error coding HiddenField 'borrower' hides a field. 43
 Error design DesignForExtension Method 'getReturnDate' is not designed for extension - needs to be abstract, final or empty. 47
 Error blocks LeftCurly '{' should have line break after. 47
 Error design DesignForExtension Method 'setReturnDate' 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 returnDate should be final. 48
 Error coding HiddenField 'returnDate' hides a field. 48
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error whitespace OperatorWrap '+' should be on a new line. 53
 Error whitespace OperatorWrap '+' should be on a new line. 54
 Error whitespace OperatorWrap '+' should be on a new line. 55
 Error whitespace OperatorWrap '+' should be on a new line. 56
 Error whitespace OperatorWrap '+' should be on a new line. 57

ejava/examples/orm/rel/annotated/Inventory.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 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 javadoc JavadocVariable Missing a Javadoc comment. 19
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 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. 22
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 22
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 26
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 26
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 26
 Error misc FinalParameters Parameter id should be final. 27
 Error coding HiddenField 'id' hides a field. 27
 Error blocks LeftCurly '{' should have line break after. 27
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' should have line break after. 29
 Error design DesignForExtension Method 'getMedia' is not designed for extension - needs to be abstract, final or empty. 31
 Error blocks LeftCurly '{' should have line break after. 31
 Error design DesignForExtension Method 'setMedia' is not designed for extension - needs to be abstract, final or empty. 32
 Error javadoc JavadocMethod Missing a Javadoc comment. 32
 Error misc FinalParameters Parameter media should be final. 32
 Error coding HiddenField 'media' hides a field. 32
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 36
 Error blocks LeftCurly '{' should have line break after. 36
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 37
 Error javadoc JavadocMethod Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter name should be final. 37
 Error coding HiddenField 'name' hides a field. 37
 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
 Error javadoc JavadocMethod Missing a Javadoc comment. 41
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 46

ejava/examples/orm/rel/annotated/Library.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 8
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error javadoc JavadocVariable Missing a Javadoc comment. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 16
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 16
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 16
 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 misc FinalParameters Parameter id should be final. 21
 Error coding HiddenField 'id' hides a field. 21
 Error blocks LeftCurly '{' should have line break after. 21
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 23
 Error blocks LeftCurly '{' should have line break after. 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error design DesignForExtension Method 'getBorrowers' is not designed for extension - needs to be abstract, final or empty. 25
 Error blocks LeftCurly '{' should have line break after. 25
 Error design DesignForExtension Method 'setBorrowers' 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 borrowers should be final. 26
 Error coding HiddenField 'borrowers' hides a field. 26
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 30
 Error javadoc JavadocMethod Missing a Javadoc comment. 30
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 34
 Error whitespace OperatorWrap '+' should be on a new line. 35
 Error whitespace OperatorWrap '+' should be on a new line. 36

ejava/examples/orm/rel/annotated/Media.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 11
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error regexp RegexpSingleline Line has trailing spaces. 15
 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 regexp RegexpSingleline Line has trailing spaces. 24
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 31
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 31
 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 regexp RegexpSingleline Line has trailing spaces. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 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 regexp RegexpSingleline Line has trailing spaces. 40
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error javadoc JavadocMethod Missing a Javadoc comment. 41
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 45
 Error blocks LeftCurly '{' should have line break after. 45
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error design DesignForExtension Method 'getTitle' is not designed for extension - needs to be abstract, final or empty. 47
 Error blocks LeftCurly '{' should have line break after. 47
 Error design DesignForExtension Method 'setTitle' 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 title should be final. 48
 Error coding HiddenField 'title' hides a field. 48
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error design DesignForExtension Method 'getAuthors' is not designed for extension - needs to be abstract, final or empty. 52
 Error blocks LeftCurly '{' should have line break after. 52
 Error design DesignForExtension Method 'setAuthors' is not designed for extension - needs to be abstract, final or empty. 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error misc FinalParameters Parameter authors should be final. 53
 Error coding HiddenField 'authors' hides a field. 53
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 57
 Error javadoc JavadocMethod Missing a Javadoc comment. 57

ejava/examples/orm/rel/annotated/MediaCopy.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error sizes LineLength Line is longer than 80 characters (found 86). 32
 Error sizes LineLength Line is longer than 80 characters (found 85). 33
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 42
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 51
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 51
 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 whitespace WhitespaceAround '=' is not followed by whitespace. 52
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error blocks LeftCurly '{' should have line break after. 55
 Error javadoc JavadocMethod Missing a Javadoc comment. 56
 Error misc FinalParameters Parameter media should be final. 56
 Error coding HiddenField 'media' hides a field. 56
 Error misc FinalParameters Parameter copyNo should be final. 56
 Error coding HiddenField 'copyNo' hides a field. 56
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error design DesignForExtension Method 'getCopyNo' is not designed for extension - needs to be abstract, final or empty. 64
 Error blocks LeftCurly '{' should have line break after. 64
 Error misc FinalParameters Parameter copyNo should be final. 65
 Error coding HiddenField 'copyNo' hides a field. 65
 Error blocks LeftCurly '{' should have line break after. 65
 Error regexp RegexpSingleline Line has trailing spaces. 66
 Error design DesignForExtension Method 'getMediaId' is not designed for extension - needs to be abstract, final or empty. 67
 Error blocks LeftCurly '{' should have line break after. 67
 Error misc FinalParameters Parameter mediaId should be final. 68
 Error coding HiddenField 'mediaId' hides a field. 68
 Error blocks LeftCurly '{' should have line break after. 68
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error design DesignForExtension Method 'getMedia' is not designed for extension - needs to be abstract, final or empty. 70
 Error blocks LeftCurly '{' should have line break after. 70
 Error misc FinalParameters Parameter media should be final. 71
 Error coding HiddenField 'media' hides a field. 71
 Error blocks LeftCurly '{' should have line break after. 71
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 73
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error whitespace OperatorWrap '+' should be on a new line. 74
 Error whitespace OperatorWrap '+' should be on a new line. 75
 Error whitespace OperatorWrap '+' should be on a new line. 76

ejava/examples/orm/rel/annotated/MediaCopy2.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 11
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 17
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 17
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 20
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 23
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error regexp RegexpSingleline Line has trailing spaces. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 28
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 28
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error blocks LeftCurly '{' should have line break after. 31
 Error javadoc JavadocMethod Missing a Javadoc comment. 32
 Error misc FinalParameters Parameter media should be final. 32
 Error coding HiddenField 'media' hides a field. 32
 Error misc FinalParameters Parameter copyNo should be final. 32
 Error coding HiddenField 'copyNo' hides a field. 32
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error design DesignForExtension Method 'getCopyNo' is not designed for extension - needs to be abstract, final or empty. 39
 Error blocks LeftCurly '{' should have line break after. 39
 Error misc FinalParameters Parameter copyNo should be final. 40
 Error coding HiddenField 'copyNo' hides a field. 40
 Error blocks LeftCurly '{' should have line break after. 40
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error design DesignForExtension Method 'getMediaId' is not designed for extension - needs to be abstract, final or empty. 42
 Error blocks LeftCurly '{' should have line break after. 42
 Error whitespace WhitespaceAfter ';' is not followed by whitespace. 42
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 42
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error design DesignForExtension Method 'getMedia' is not designed for extension - needs to be abstract, final or empty. 44
 Error blocks LeftCurly '{' should have line break after. 44
 Error misc FinalParameters Parameter media should be final. 45
 Error coding HiddenField 'media' hides a field. 45
 Error blocks LeftCurly '{' should have line break after. 45
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 47
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error whitespace OperatorWrap '+' should be on a new line. 48
 Error whitespace OperatorWrap '+' should be on a new line. 49
 Error whitespace OperatorWrap '+' should be on a new line. 50

ejava/examples/orm/rel/annotated/Person.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error regexp RegexpSingleline Line has trailing spaces. 12
 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 javadoc JavadocVariable Missing a Javadoc comment. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error javadoc JavadocVariable Missing a Javadoc comment. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 Error javadoc JavadocVariable Missing a Javadoc comment. 22
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 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. 26
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 26
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 27
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 27
 Error blocks LeftCurly '{' should have line break after. 30
 Error whitespace WhitespaceAfter ';' is not followed by whitespace. 30
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 30
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 32
 Error javadoc JavadocMethod Missing a Javadoc comment. 32
 Error design DesignForExtension Method 'getFirstName' is not designed for extension - needs to be abstract, final or empty. 36
 Error blocks LeftCurly '{' should have line break after. 36
 Error design DesignForExtension Method 'setFirstName' is not designed for extension - needs to be abstract, final or empty. 37
 Error javadoc JavadocMethod Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter firstName should be final. 37
 Error coding HiddenField 'firstName' hides a field. 37
 Error design DesignForExtension Method 'getLastName' is not designed for extension - needs to be abstract, final or empty. 41
 Error blocks LeftCurly '{' should have line break after. 41
 Error design DesignForExtension Method 'setLastName' 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 lastName should be final. 42
 Error coding HiddenField 'lastName' hides a field. 42
 Error design DesignForExtension Method 'getPhone' is not designed for extension - needs to be abstract, final or empty. 46
 Error blocks LeftCurly '{' should have line break after. 46
 Error design DesignForExtension Method 'setPhone' is not designed for extension - needs to be abstract, final or empty. 47
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error misc FinalParameters Parameter phone should be final. 47
 Error coding HiddenField 'phone' hides a field. 47
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error design DesignForExtension Method 'getPhoto' is not designed for extension - needs to be abstract, final or empty. 51
 Error blocks LeftCurly '{' should have line break after. 51
 Error design DesignForExtension Method 'setPhoto' is not designed for extension - needs to be abstract, final or empty. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter photo should be final. 52
 Error coding HiddenField 'photo' hides a field. 52
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 56
 Error javadoc JavadocMethod Missing a Javadoc comment. 56
 Error whitespace OperatorWrap '+' should be on a new line. 57
 Error whitespace OperatorWrap '+' should be on a new line. 58
 Error whitespace OperatorWrap '+' should be on a new line. 59
 Error whitespace OperatorWrap '+' should be on a new line. 60

ejava/examples/orm/rel/annotated/Photo.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error javadoc JavadocVariable Missing a Javadoc comment. 20
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error blocks LeftCurly '{' should have line break after. 24
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 25
 Error misc FinalParameters Parameter image should be final. 25
 Error coding HiddenField 'image' hides a field. 25
 Error regexp RegexpSingleline Line has trailing spaces. 26
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 30
 Error javadoc JavadocMethod Missing a Javadoc comment. 30
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error design DesignForExtension Method 'getImage' is not designed for extension - needs to be abstract, final or empty. 35
 Error blocks LeftCurly '{' should have line break after. 35
 Error design DesignForExtension Method 'setImage' 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 image should be final. 36
 Error coding HiddenField 'image' hides a field. 36
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 40
 Error javadoc JavadocMethod Missing a Javadoc comment. 40
 Error coding AvoidInlineConditionals Avoid inline conditionals. 41
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error coding AvoidInlineConditionals Avoid inline conditionals. 43
 Error whitespace OperatorWrap '+' should be on a new line. 44
 Error whitespace OperatorWrap '+' should be on a new line. 45

ejava/examples/orm/rel/annotated/WantList.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 6
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error sizes LineLength Line is longer than 80 characters (found 92). 19
 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 design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 22
 Error blocks LeftCurly '{' should have line break after. 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error design DesignForExtension Method 'getMedia' is not designed for extension - needs to be abstract, final or empty. 24
 Error blocks LeftCurly '{' should have line break after. 24
 Error design DesignForExtension Method 'setMedia' 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 media should be final. 25
 Error coding HiddenField 'media' hides a field. 25

ejava/examples/orm/rel/composite/Door.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 11
 Error sizes LineLength Line is longer than 80 characters (found 84). 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 whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error sizes LineLength Line is longer than 80 characters (found 81). 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. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 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. 18
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 18
 Error sizes LineLength Line is longer than 80 characters (found 83). 19
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 20
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 20
 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 house should be final. 24
 Error coding HiddenField 'house' hides a field. 24
 Error misc FinalParameters Parameter doorId should be final. 24
 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 regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'getPk' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' should have line break after. 29
 Error design DesignForExtension Method 'getHouse' is not designed for extension - needs to be abstract, final or empty. 30
 Error blocks LeftCurly '{' should have line break after. 30

ejava/examples/orm/rel/composite/DoorPK.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 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. 11
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 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 regexp RegexpSingleline Line has trailing spaces. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error misc FinalParameters Parameter houseId should be final. 17
 Error coding HiddenField 'houseId' hides a field. 17
 Error misc FinalParameters Parameter doorId should be final. 17
 Error coding HiddenField 'doorId' hides a field. 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. 19
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 19
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error design DesignForExtension Method 'getHouseId' is not designed for extension - needs to be abstract, final or empty. 22
 Error blocks LeftCurly '{' should have line break after. 22
 Error design DesignForExtension Method 'getDoorId' is not designed for extension - needs to be abstract, final or empty. 23
 Error blocks LeftCurly '{' should have line break after. 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 25
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 30
 Error misc FinalParameters Parameter obj should be final. 31
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 33
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 33
 Error blocks LeftCurly '{' should have line break after. 33
 Error blocks RightCurly '}' should have line break before. 33
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 34
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 34
 Error blocks LeftCurly '{' should have line break after. 34
 Error blocks RightCurly '}' should have line break before. 34
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 35
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 36
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 36
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 36
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 36
 Error blocks LeftCurly '{' should have line break after. 37
 Error blocks RightCurly '}' should have line break before. 37

ejava/examples/orm/rel/composite/House.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. 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 regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 13
 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. 14
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 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. 17
 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 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. 21
 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. 22
 Error whitespace WhitespaceAround '=' 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 regexp RegexpSingleline Line has trailing spaces. 24
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 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. 26
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 26
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 27
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 27
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 29
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 29
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 29
 Error misc FinalParameters Parameter id should be final. 30
 Error coding HiddenField 'id' hides a field. 30
 Error blocks LeftCurly '{' 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 regexp RegexpSingleline Line has trailing spaces. 31
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 32
 Error blocks LeftCurly '{' should have line break after. 32
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error design DesignForExtension Method 'getRooms' is not designed for extension - needs to be abstract, final or empty. 34
 Error blocks LeftCurly '{' should have line break after. 34
 Error design DesignForExtension Method 'getDoors' is not designed for extension - needs to be abstract, final or empty. 35
 Error blocks LeftCurly '{' should have line break after. 35
 Error design DesignForExtension Method 'getResidents' is not designed for extension - needs to be abstract, final or empty. 36
 Error blocks LeftCurly '{' should have line break after. 36
 Error design DesignForExtension Method 'getMortgages' is not designed for extension - needs to be abstract, final or empty. 37
 Error blocks LeftCurly '{' should have line break after. 37

ejava/examples/orm/rel/composite/Mortgage.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 11
 Error sizes LineLength Line is longer than 80 characters (found 89). 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 whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error regexp RegexpSingleline Line has trailing spaces. 16
 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 whitespace WhitespaceAround '=' is not preceded with whitespace. 17
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 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 regexp RegexpSingleline Line has trailing spaces. 21
 Error javadoc JavadocMethod Missing a Javadoc comment. 22
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 22
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 22
 Error javadoc JavadocMethod Missing a Javadoc comment. 23
 Error misc FinalParameters Parameter house should be final. 23
 Error coding HiddenField 'house' hides a field. 23
 Error misc FinalParameters Parameter mortgageId should be final. 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. 25
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 25
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error design DesignForExtension Method 'getPk' is not designed for extension - needs to be abstract, final or empty. 28
 Error blocks LeftCurly '{' should have line break after. 28
 Error design DesignForExtension Method 'getHouse' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' should have line break after. 29

ejava/examples/orm/rel/composite/MortgagePK.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 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. 11
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 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 regexp RegexpSingleline Line has trailing spaces. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 16
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 16
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error misc FinalParameters Parameter houseId should be final. 17
 Error coding HiddenField 'houseId' hides a field. 17
 Error misc FinalParameters Parameter doorId should be final. 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. 19
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 19
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error design DesignForExtension Method 'getHouseId' is not designed for extension - needs to be abstract, final or empty. 22
 Error blocks LeftCurly '{' should have line break after. 22
 Error design DesignForExtension Method 'getMortgageId' is not designed for extension - needs to be abstract, final or empty. 23
 Error blocks LeftCurly '{' should have line break after. 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 25
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 30
 Error misc FinalParameters Parameter obj should be final. 31
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 33
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 33
 Error blocks LeftCurly '{' should have line break after. 33
 Error blocks RightCurly '}' should have line break before. 33
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 34
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 34
 Error blocks LeftCurly '{' should have line break after. 34
 Error blocks RightCurly '}' should have line break before. 34
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 35
 Error sizes LineLength Line is longer than 80 characters (found 82). 36
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 36
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 36
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 36
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 36
 Error blocks LeftCurly '{' should have line break after. 37
 Error blocks RightCurly '}' should have line break before. 37

ejava/examples/orm/rel/composite/Resident.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 Error sizes LineLength Line is longer than 80 characters (found 83). 12
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 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. 12
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 12
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 16
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 16
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 16
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 17
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 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 JavadocVariable Missing a Javadoc comment. 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 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 house should be final. 24
 Error coding HiddenField 'house' hides a field. 24
 Error misc FinalParameters Parameter residentId should be final. 24
 Error coding HiddenField 'residentId' hides a field. 24
 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 regexp RegexpSingleline Line has trailing spaces. 28
 Error design DesignForExtension Method 'getHouse' is not designed for extension - needs to be abstract, final or empty. 29
 Error blocks LeftCurly '{' should have line break after. 29
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error design DesignForExtension Method 'getResidentId' is not designed for extension - needs to be abstract, final or empty. 30
 Error blocks LeftCurly '{' should have line break after. 30

ejava/examples/orm/rel/composite/ResidentPK.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 5
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 6
 Error javadoc JavadocVariable Missing a Javadoc comment. 6
 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 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 houseId should be final. 11
 Error misc FinalParameters Parameter residentId should be final. 11
 Error coding HiddenField 'residentId' hides a field. 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. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error design DesignForExtension Method 'getHouseId' is not designed for extension - needs to be abstract, final or empty. 16
 Error blocks LeftCurly '{' should have line break after. 16
 Error design DesignForExtension Method 'getResidentId' is not designed for extension - needs to be abstract, final or empty. 17
 Error blocks LeftCurly '{' should have line break after. 17
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 19
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 24
 Error misc FinalParameters Parameter obj should be final. 25
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 27
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 27
 Error blocks LeftCurly '{' should have line break after. 27
 Error blocks RightCurly '}' should have line break before. 27
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 28
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 28
 Error blocks LeftCurly '{' should have line break after. 28
 Error blocks RightCurly '}' should have line break before. 28
 Error whitespace WhitespaceAfter 'cast' 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. 30
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 30
 Error blocks LeftCurly '{' should have line break after. 31
 Error blocks RightCurly '}' should have line break before. 31
 Error regexp RegexpSingleline Line has trailing spaces. 32

ejava/examples/orm/rel/composite/Room.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.persistence.*. 3
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 9
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 9
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 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. 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 whitespace WhitespaceAround '=' is not preceded with whitespace. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 13
 Error regexp RegexpSingleline Line has trailing spaces. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 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 sizes LineLength Line is longer than 80 characters (found 83). 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. 23
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 23
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 26
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 26
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 27
 Error misc FinalParameters Parameter house should be final. 27
 Error coding HiddenField 'house' hides a field. 27
 Error misc FinalParameters Parameter roomId should be final. 27
 Error coding HiddenField 'roomId' hides a field. 27
 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 regexp RegexpSingleline Line has trailing spaces. 32
 Error design DesignForExtension Method 'getHouse' is not designed for extension - needs to be abstract, final or empty. 33
 Error blocks LeftCurly '{' should have line break after. 33
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error design DesignForExtension Method 'getRoomId' is not designed for extension - needs to be abstract, final or empty. 34
 Error blocks LeftCurly '{' should have line break after. 34

ejava/examples/orm/rel/composite/RoomPK.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 7
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 9
 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. 11
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 11
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 15
 Error misc FinalParameters Parameter houseId should be final. 15
 Error coding HiddenField 'houseId' hides a field. 15
 Error misc FinalParameters Parameter roomId should be final. 15
 Error coding HiddenField 'roomId' hides a field. 15
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 16
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 16
 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 'getHouseId' is not designed for extension - needs to be abstract, final or empty. 20
 Error blocks LeftCurly '{' should have line break after. 20
 Error design DesignForExtension Method 'getRoomId' is not designed for extension - needs to be abstract, final or empty. 21
 Error blocks LeftCurly '{' should have line break after. 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error design DesignForExtension Method 'hashCode' is not designed for extension - needs to be abstract, final or empty. 23
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error design DesignForExtension Method 'equals' is not designed for extension - needs to be abstract, final or empty. 28
 Error misc FinalParameters Parameter obj should be final. 29
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 31
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 31
 Error blocks LeftCurly '{' should have line break after. 31
 Error blocks RightCurly '}' should have line break before. 31
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 32
 Error blocks LeftCurly '{' should have line break after. 32
 Error blocks RightCurly '}' should have line break before. 32
 Error whitespace WhitespaceAfter 'cast' is not followed by whitespace. 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. 34
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 34
 Error blocks LeftCurly '{' should have line break after. 35
 Error blocks RightCurly '}' should have line break before. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36