Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
32 0 0 1446

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 29
ejava/examples/orm/map/annotated/OneManyOwningChild.java 0 0 27
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 43
ejava/examples/orm/rel/MediaCopyPK2.java 0 0 37
ejava/examples/orm/rel/annotated/Applicant.java 0 0 54
ejava/examples/orm/rel/annotated/Author.java 0 0 50
ejava/examples/orm/rel/annotated/Borrower.java 0 0 97
ejava/examples/orm/rel/annotated/Checkout.java 0 0 69
ejava/examples/orm/rel/annotated/Inventory.java 0 0 42
ejava/examples/orm/rel/annotated/Library.java 0 0 39
ejava/examples/orm/rel/annotated/Media.java 0 0 46
ejava/examples/orm/rel/annotated/MediaCopy.java 0 0 64
ejava/examples/orm/rel/annotated/MediaCopy2.java 0 0 57
ejava/examples/orm/rel/annotated/Person.java 0 0 63
ejava/examples/orm/rel/annotated/Photo.java 0 0 44
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 43
ejava/examples/orm/rel/composite/House.java 0 0 69
ejava/examples/orm/rel/composite/Mortgage.java 0 0 40
ejava/examples/orm/rel/composite/MortgagePK.java 0 0 43
ejava/examples/orm/rel/composite/Resident.java 0 0 41
ejava/examples/orm/rel/composite/ResidentPK.java 0 0 39
ejava/examples/orm/rel/composite/Room.java 0 0 49
ejava/examples/orm/rel/composite/RoomPK.java 0 0 44

Rules

Category Rule Violations Severity
blocks LeftCurly 114  Error
NeedBraces 2  Error
RightCurly 3  Error
coding AvoidInlineConditionals 5  Error
HiddenField 75  Error
MagicNumber 5  Error
design DesignForExtension 152  Error
imports AvoidStarImport 26  Error
javadoc JavadocMethod 121  Error
JavadocPackage 5  Error
JavadocType 8  Error
JavadocVariable 90  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"
198  Error
sizes LineLength 21  Error
whitespace FileTabCharacter 13  Error
OperatorWrap 32  Error
WhitespaceAfter 11  Error
WhitespaceAround 471  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 '{' at column 29 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 '{' at column 47 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 '{' at column 29 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 '{' at column 67 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 '{' at column 29 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 '{' at column 59 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 '{' at column 73 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 '{' at column 38 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 '{' at column 29 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 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 '{' at column 46 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 '{' at column 29 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 '{' at column 65 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 javadoc JavadocPackage Missing package-info.java file.
 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 '{' at column 44 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 '{' at column 29 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 '{' at column 55 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 '{' at column 45 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 '{' at column 29 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 '{' at column 57 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 '{' at column 34 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 '{' at column 38 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 '{' at column 25 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 '{' at column 29 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. 118
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 118
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 118
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 118
 Error javadoc JavadocVariable Missing a Javadoc comment. 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. 123
 Error javadoc JavadocVariable Missing a Javadoc comment. 125
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 126
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 126
 Error regexp RegexpSingleline Line has trailing spaces. 130
 Error javadoc JavadocMethod Missing a Javadoc comment. 131
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 131
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 131
 Error misc FinalParameters Parameter id should be final. 132
 Error coding HiddenField 'id' hides a field. 132
 Error blocks LeftCurly '{' at column 41 should have line break after. 132
 Error misc FinalParameters Parameter name should be final. 133
 Error coding HiddenField 'name' hides a field. 133
 Error blocks LeftCurly '{' at column 45 should have line break after. 133
 Error regexp RegexpSingleline Line has trailing spaces. 134
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 135
 Error blocks LeftCurly '{' at column 25 should have line break after. 135
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 137
 Error blocks LeftCurly '{' at column 29 should have line break after. 137
 Error design DesignForExtension Method 'setName' is not designed for extension - needs to be abstract, final or empty. 138
 Error javadoc JavadocMethod Missing a Javadoc comment. 138
 Error misc FinalParameters Parameter name should be final. 138
 Error coding HiddenField 'name' hides a field. 138
 Error design DesignForExtension Method 'getChildren' is not designed for extension - needs to be abstract, final or empty. 142
 Error blocks LeftCurly '{' at column 51 should have line break after. 142
 Error design DesignForExtension Method 'setChildren' is not designed for extension - needs to be abstract, final or empty. 143
 Error javadoc JavadocMethod Missing a Javadoc comment. 143
 Error misc FinalParameters Parameter children should be final. 143
 Error coding HiddenField 'children' hides a field. 143
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 147
 Error javadoc JavadocMethod Missing a Javadoc comment. 147

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. 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 '{' at column 28 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 '{' at column 30 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 'typecast' 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 'typecast' is not followed by whitespace. 35
 Error whitespace OperatorWrap '&&' should be on a new line. 35
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 36
 Error blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 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. 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 '{' at column 28 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 '{' at column 30 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 'typecast' 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 'typecast' is not followed by whitespace. 31
 Error whitespace OperatorWrap '&&' should be on a new line. 31
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 32
 Error blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 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 '{' at column 25 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 '{' at column 35 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 '{' at column 33 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 javadoc JavadocMethod Missing a Javadoc comment. 44
 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. 49
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 50
 Error whitespace OperatorWrap '+' should be on a new line. 51
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error whitespace OperatorWrap '+' should be on a new line. 52
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 53
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 53
 Error coding AvoidInlineConditionals Avoid inline conditionals. 53
 Error whitespace OperatorWrap '+' should be on a new line. 53
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 54
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 54
 Error coding AvoidInlineConditionals Avoid inline conditionals. 54

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 '{' at column 28 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 '{' at column 25 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 '{' at column 35 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 '{' at column 29 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 javadoc JavadocMethod Missing a Javadoc comment. 42
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 43
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 43
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 44
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 44
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 48

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 sizes LineLength Line is longer than 80 characters (found 115). 43
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 43
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 46
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 46
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 47
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 47
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error blocks LeftCurly '{' at column 26 should have line break after. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 51
 Error misc FinalParameters Parameter identity should be final. 51
 Error coding HiddenField 'identity' hides a field. 51
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 57
 Error blocks LeftCurly '{' at column 25 should have line break after. 57
 Error design DesignForExtension Method 'getEndDate' is not designed for extension - needs to be abstract, final or empty. 59
 Error blocks LeftCurly '{' at column 30 should have line break after. 59
 Error design DesignForExtension Method 'setEndDate' is not designed for extension - needs to be abstract, final or empty. 60
 Error javadoc JavadocMethod Missing a Javadoc comment. 60
 Error misc FinalParameters Parameter end should be final. 60
 Error design DesignForExtension Method 'getStartDate' is not designed for extension - needs to be abstract, final or empty. 64
 Error blocks LeftCurly '{' at column 32 should have line break after. 64
 Error design DesignForExtension Method 'setStartDate' is not designed for extension - needs to be abstract, final or empty. 65
 Error javadoc JavadocMethod Missing a Javadoc comment. 65
 Error misc FinalParameters Parameter start should be final. 65
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error javadoc JavadocMethod Expected an @return tag. 75
 Error design DesignForExtension Method 'getName' is not designed for extension - needs to be abstract, final or empty. 75
 Error design DesignForExtension Method 'getApplication' is not designed for extension - needs to be abstract, final or empty. 79
 Error blocks LeftCurly '{' at column 39 should have line break after. 79
 Error design DesignForExtension Method 'setApplication' is not designed for extension - needs to be abstract, final or empty. 80
 Error javadoc JavadocMethod Missing a Javadoc comment. 80
 Error misc FinalParameters Parameter application should be final. 80
 Error coding HiddenField 'application' hides a field. 80
 Error design DesignForExtension Method 'getCheckouts' is not designed for extension - needs to be abstract, final or empty. 84
 Error javadoc JavadocMethod Missing a Javadoc comment. 84
 Error design DesignForExtension Method 'addCheckout' is not designed for extension - needs to be abstract, final or empty. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter checkout should be final. 88
 Error design DesignForExtension Method 'removeCheckout' is not designed for extension - needs to be abstract, final or empty. 91
 Error javadoc JavadocMethod Missing a Javadoc comment. 91
 Error misc FinalParameters Parameter checkout should be final. 91
 Error javadoc JavadocMethod Missing a Javadoc comment. 95
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 96
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 96
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 97
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 97
 Error regexp RegexpSingleline Line has trailing spaces. 100
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 101
 Error javadoc JavadocMethod Missing a Javadoc comment. 101
 Error whitespace OperatorWrap '+' should be on a new line. 103
 Error whitespace OperatorWrap '+' should be on a new line. 104
 Error whitespace OperatorWrap '+' should be on a new line. 105
 Error whitespace OperatorWrap '+' should be on a new line. 106
 Error whitespace OperatorWrap '+' should be on a new line. 107
 Error whitespace OperatorWrap '+' should be on a new line. 108
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 110
 Error blocks LeftCurly '{' at column 32 should have line break after. 112

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 '{' at column 25 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 '{' at column 35 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 '{' at column 33 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 javadoc JavadocMethod Missing a Javadoc comment. 52
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 53
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 53
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 54
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 54
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 58
 Error whitespace OperatorWrap '+' should be on a new line. 59
 Error whitespace OperatorWrap '+' should be on a new line. 60
 Error whitespace OperatorWrap '+' should be on a new line. 61
 Error whitespace OperatorWrap '+' should be on a new line. 62
 Error whitespace OperatorWrap '+' should be on a new line. 63

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 sizes LineLength Line is longer than 80 characters (found 92). 22
 Error regexp RegexpSingleline Line has trailing spaces. 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 misc FinalParameters Parameter id should be final. 27
 Error coding HiddenField 'id' hides a field. 27
 Error blocks LeftCurly '{' at column 31 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 '{' at column 25 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 '{' at column 41 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 '{' at column 29 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 javadoc JavadocMethod Missing a Javadoc comment. 41
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 42
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 42
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 43
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 43
 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 WhitespaceAround 'for' is not followed by whitespace. 52

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 '{' at column 29 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 '{' at column 25 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 '{' at column 47 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 javadoc JavadocMethod Missing a Javadoc comment. 30
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 31
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 31
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 32
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 36
 Error javadoc JavadocMethod Missing a Javadoc comment. 36
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 40
 Error whitespace OperatorWrap '+' should be on a new line. 41
 Error whitespace OperatorWrap '+' should be on a new line. 42

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 '{' at column 25 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 '{' at column 30 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 '{' at column 44 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 javadoc JavadocMethod Missing a Javadoc comment. 57
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 58
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 58
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 59
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 59
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63

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 '{' at column 27 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 should have line break after. 71
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 74
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 74
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 75
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 75
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 79
 Error javadoc JavadocMethod Missing a Javadoc comment. 79
 Error whitespace OperatorWrap '+' should be on a new line. 80
 Error whitespace OperatorWrap '+' should be on a new line. 81
 Error whitespace OperatorWrap '+' should be on a new line. 82

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 '{' at column 28 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 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 '{' at column 43 should have line break after. 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 48
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 48
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 49
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 49
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 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

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 sizes LineLength Line is longer than 80 characters (found 98). 30
 Error blocks LeftCurly '{' at column 21 should have line break after. 30
 Error blocks LeftCurly '{' at column 52 should have line break after. 30
 Error blocks RightCurly '}' at column 96 should be alone on a line. 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 '{' at column 34 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 '{' at column 33 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 '{' at column 30 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 '{' at column 29 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 regexp RegexpSingleline Line has trailing spaces. 55
 Error javadoc JavadocMethod Missing a Javadoc comment. 56
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 57
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 57
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 58
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 58
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 62
 Error javadoc JavadocMethod Missing a Javadoc comment. 62
 Error whitespace OperatorWrap '+' should be on a new line. 63
 Error whitespace OperatorWrap '+' should be on a new line. 64
 Error whitespace OperatorWrap '+' should be on a new line. 65
 Error whitespace OperatorWrap '+' should be on a new line. 66

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 '{' at column 20 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 '{' at column 30 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 javadoc JavadocMethod Missing a Javadoc comment. 40
 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. 45
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error coding AvoidInlineConditionals Avoid inline conditionals. 47
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error coding AvoidInlineConditionals Avoid inline conditionals. 49
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 50
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 50
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 51
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 51
 Error whitespace OperatorWrap '+' should be on a new line. 52
 Error whitespace OperatorWrap '+' should be on a new line. 53

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 '{' at column 25 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 '{' at column 41 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 '{' at column 24 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 '{' at column 26 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. 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 '{' at column 26 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 '{' at column 25 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 '{' at column 19 should have line break after. 33
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 34
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 34
 Error blocks LeftCurly '{' at column 19 should have line break after. 34
 Error whitespace WhitespaceAfter 'typecast' 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 '{' at column 26 should have line break after. 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 '{' at column 23 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 '{' at column 21 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 '{' at column 37 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 '{' at column 37 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 '{' at column 45 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 '{' at column 45 should have line break after. 37

ejava/examples/orm/rel/composite/Mortgage.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 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 '{' at column 28 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 '{' at column 26 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. 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 '{' at column 26 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 '{' at column 29 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 '{' at column 19 should have line break after. 33
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 34
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 34
 Error blocks LeftCurly '{' at column 19 should have line break after. 34
 Error whitespace WhitespaceAfter 'typecast' 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 '{' at column 26 should have line break after. 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 '{' at column 26 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 '{' at column 29 should have line break after. 30

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

Severity Category Rule Message Line
 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. 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 '{' at column 26 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 '{' at column 29 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 '{' at column 19 should have line break after. 27
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 28
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 28
 Error blocks LeftCurly '{' at column 19 should have line break after. 28
 Error whitespace WhitespaceAfter 'typecast' 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 '{' at column 26 should have line break after. 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 '{' at column 26 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 '{' at column 25 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. 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 '{' at column 26 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 '{' at column 25 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 '{' at column 19 should have line break after. 31
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 32
 Error blocks LeftCurly '{' at column 19 should have line break after. 32
 Error whitespace WhitespaceAfter 'typecast' 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 '{' at column 26 should have line break after. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36