Checkstyle Results

The following document contains the results of Checkstyle 6.11.2 with ../developmentTools/Checkstyle/checkstyle.xml ruleset. 

rss feed

Summary

Files
 Info
 Warnings
 Errors
115 0 225 0

Files

File
 I
 W
 E
core/application/MyApplicationStarter.java 0 1 0
de/fhdw/wtf/context/core/ApplicationStarter.java 0 2 0
de/fhdw/wtf/context/core/ContextWithDatabaseAccess.java 0 2 0
de/fhdw/wtf/context/core/NoContext.java 0 4 0
de/fhdw/wtf/context/core/PersistenceContext.java 0 5 0
de/fhdw/wtf/context/core/RevisionContext.java 0 4 0
de/fhdw/wtf/context/core/TestCaseContext.java 0 4 0
de/fhdw/wtf/context/exception/DummyCollectionUsed.java 0 1 0
de/fhdw/wtf/context/model/AbstractExceptionLayer.java 0 3 0
de/fhdw/wtf/context/model/IAnyType.java 0 3 0
de/fhdw/wtf/context/model/SymmetricRelationAccess.java 0 3 0
de/fhdw/wtf/context/model/collections/ImmutableCollection.java 0 1 0
de/fhdw/wtf/context/model/collections/PersistenceIteratorWithLink.java 0 1 0
de/fhdw/wtf/context/model/collections/PersistentMap.java 0 1 0
de/fhdw/wtf/context/model/collections/PersistentMapWithKeyValueLinks.java 0 5 0
generated/model/de/fhdw/partner/IBAN_Finder.java 0 1 0
generated/model/de/fhdw/partner/service/HausService.java 0 2 0
generated/model/de/fhdw/partner/service/PersonService.java 0 26 0
generated/model/factories/IBAN_FinderFactory.java 0 1 0
test/aspectApplication/ClassForAspectApplicationTest.java 0 4 0
test/aspectApplication/TestAspectApplication.java 0 2 0
test/integration/TestAnyTypeCache.java 0 21 0
test/integration/TestAnyTypeCacheWithDB.java 0 4 0
test/integration/TestAnyTypeId.java 0 6 0
test/integration/TestAnyTypeIdWithDB.java 0 9 0
test/integration/TestAssociation3WithDB.java 0 12 0
test/integration/TestBase.java 0 2 0
test/integration/TestBaseInterface.java 0 3 0
test/integration/TestBaseWithDB.java 0 51 0
test/integration/TestContextWithDB.java 0 2 0
test/integration/TestMutableSetIterator.java 0 7 0
test/integration/TestMutableSetIteratorWithDB.java 0 1 0
test/integration/TestPersonModel.java 0 30 0
test/integration/TestPersonModelWithDB.java 0 1 0

Rules

Category Rule Violations Severity
blocks EmptyBlock
  • tokens: "LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_IF,LITERAL_FOR,LITERAL_TRY, LITERAL_CATCH,LITERAL_WHILE,STATIC_INIT"
  • option: "text"
1
 Warning
coding MultipleStringLiterals 2
 Warning
RequireThis 2
 Warning
ReturnCount 1
 Warning
design VisibilityModifier 15
 Warning
javadoc JavadocMethod
  • suppressLoadErrors: "true"
74
 Warning
JavadocStyle 5
 Warning
JavadocType 15
 Warning
JavadocVariable 70
 Warning
metrics CyclomaticComplexity
  • max: "12"
1
 Warning
JavaNCSS 1
 Warning
modifier ModifierOrder 5
 Warning
naming ConstantName
  • format: "^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"
1
 Warning
LocalFinalVariableName
  • format: "^[a-z][a-zA-Z0-9]*$"
8
 Warning
MemberName
  • format: "^[a-z][a-zA-Z0-9]*$"
1
 Warning
MethodName
  • format: "^[a-z][a-zA-Z0-9]*$"
1
 Warning
TypeName
  • format: "^[A-Z][a-zA-Z0-9]*$"
2
 Warning
sizes ExecutableStatementCount
  • tokens: "INSTANCE_INIT,STATIC_INIT,METHOD_DEF,CTOR_DEF"
1
 Warning
LineLength
  • max: "120"
19
 Warning

Details

core/application/MyApplicationStarter.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 13

de/fhdw/wtf/context/core/ApplicationStarter.java

Severity Category Rule Message Line
 Warning
coding MultipleStringLiterals The String "/" appears 2 times in the file. 73
 Warning
blocks EmptyBlock Empty finally block. 114

de/fhdw/wtf/context/core/ContextWithDatabaseAccess.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'typeManager' must be private and have accessor methods. 16
 Warning
design VisibilityModifier Variable 'objectFacade' must be private and have accessor methods. 20

de/fhdw/wtf/context/core/NoContext.java

Severity Category Rule Message Line
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 101
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 107
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 137
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 161

de/fhdw/wtf/context/core/PersistenceContext.java

Severity Category Rule Message Line
 Warning
design VisibilityModifier Variable 'transaction' must be private and have accessor methods. 31
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 206
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 221
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 287
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 338

de/fhdw/wtf/context/core/RevisionContext.java

Severity Category Rule Message Line
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 164
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 170
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 200
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 224

de/fhdw/wtf/context/core/TestCaseContext.java

Severity Category Rule Message Line
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 187
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 193
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 223
 Warning
sizes LineLength Line is longer than 120 characters (found 121). 247

de/fhdw/wtf/context/exception/DummyCollectionUsed.java

Severity Category Rule Message Line
 Warning
sizes LineLength Line is longer than 120 characters (found 124). 13

de/fhdw/wtf/context/model/AbstractExceptionLayer.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 6
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 8
 Warning
naming MemberName Name '$anyType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8

de/fhdw/wtf/context/model/IAnyType.java

Severity Category Rule Message Line
 Warning
javadoc JavadocMethod Expected an @return tag. 15
 Warning
javadoc JavadocMethod Expected @param tag for 'event'. 20
 Warning
javadoc JavadocMethod Expected @param tag for 'object'. 26

de/fhdw/wtf/context/model/SymmetricRelationAccess.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 12
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 14
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 23

de/fhdw/wtf/context/model/collections/ImmutableCollection.java

Severity Category Rule Message Line
 Warning
sizes LineLength Line is longer than 120 characters (found 122). 84

de/fhdw/wtf/context/model/collections/PersistenceIteratorWithLink.java

Severity Category Rule Message Line
 Warning
sizes LineLength Line is longer than 120 characters (found 123). 41

de/fhdw/wtf/context/model/collections/PersistentMap.java

Severity Category Rule Message Line
 Warning
naming ConstantName Name 'linksAssociationName' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 24

de/fhdw/wtf/context/model/collections/PersistentMapWithKeyValueLinks.java

Severity Category Rule Message Line
 Warning
metrics CyclomaticComplexity Cyclomatic Complexity is 15 (max allowed is 12). 59
 Warning
sizes ExecutableStatementCount Executable statement count is 32 (max allowed is 30). 59
 Warning
metrics JavaNCSS NCSS for this method is 54 (max allowed is 50). 59
 Warning
coding MultipleStringLiterals The String "Type to insert is not known" appears 5 times in the file. 94
 Warning
coding ReturnCount Return count is 3 (max allowed is 2). 161

generated/model/de/fhdw/partner/IBAN_Finder.java

Severity Category Rule Message Line
 Warning
naming TypeName Name 'IBAN_Finder' must match pattern '^[A-Z][a-zA-Z0-9]*$'. 10

generated/model/de/fhdw/partner/service/HausService.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 7
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 9

generated/model/de/fhdw/partner/service/PersonService.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 25
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 29
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 35
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 40
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 44
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 48
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 52
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 56
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 60
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 64
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 68
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 72
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 76
 Warning
naming MethodName Name 'createIban_Finder' must match pattern '^[a-z][a-zA-Z0-9]*$'. 76
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 80
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 84
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 88
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 94
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 98
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 104
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 112
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 116
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 120
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 127
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 135
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 139

generated/model/factories/IBAN_FinderFactory.java

Severity Category Rule Message Line
 Warning
naming TypeName Name 'IBAN_FinderFactory' must match pattern '^[A-Z][a-zA-Z0-9]*$'. 11

test/aspectApplication/ClassForAspectApplicationTest.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 3
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 5
 Warning
design VisibilityModifier Variable 'wasAspectApplied' must be private and have accessor methods. 5
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 7

test/aspectApplication/TestAspectApplication.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 7
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 9

test/integration/TestAnyTypeCache.java

Severity Category Rule Message Line
 Warning
javadoc JavadocStyle First sentence should end with a period. 17
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 21
 Warning
design VisibilityModifier Variable 'alexr' must be private and have accessor methods. 21
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 22
 Warning
design VisibilityModifier Variable 'bennis' must be private and have accessor methods. 22
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 23
 Warning
design VisibilityModifier Variable 'patrick' must be private and have accessor methods. 23
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 25
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 31
 Warning
modifier ModifierOrder 'protected' modifier out of order with the JLS suggestions. 31
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 33
 Warning
modifier ModifierOrder 'protected' modifier out of order with the JLS suggestions. 33
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 35
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 58
 Warning
naming LocalFinalVariableName Name 'Person1WohnhaftId' must match pattern '^[a-z][a-zA-Z0-9]*$'. 67
 Warning
naming LocalFinalVariableName Name 'Person2WohnhaftId' must match pattern '^[a-z][a-zA-Z0-9]*$'. 68
 Warning
naming LocalFinalVariableName Name 'Person1WohnhaftHausNr' must match pattern '^[a-z][a-zA-Z0-9]*$'. 70
 Warning
naming LocalFinalVariableName Name 'Person2WohnhaftHausNr' must match pattern '^[a-z][a-zA-Z0-9]*$'. 71
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 87
 Warning
naming LocalFinalVariableName Name 'Person1WohnhaftId' must match pattern '^[a-z][a-zA-Z0-9]*$'. 101
 Warning
naming LocalFinalVariableName Name 'Person2WohnhaftId' must match pattern '^[a-z][a-zA-Z0-9]*$'. 102

test/integration/TestAnyTypeCacheWithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 17
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 51
 Warning
naming LocalFinalVariableName Name 'Person1WohnhaftHausNr' must match pattern '^[a-z][a-zA-Z0-9]*$'. 71
 Warning
naming LocalFinalVariableName Name 'Person2WohnhaftHausNr' must match pattern '^[a-z][a-zA-Z0-9]*$'. 83

test/integration/TestAnyTypeId.java

Severity Category Rule Message Line
 Warning
javadoc JavadocStyle First sentence should end with a period. 13
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 18
 Warning
modifier ModifierOrder 'protected' modifier out of order with the JLS suggestions. 18
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 20
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 35
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 50

test/integration/TestAnyTypeIdWithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 13
 Warning
coding RequireThis Method call to 'initializeTypesAndSpecializationAndAssociations' needs "this.". 31
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 34
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 35
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 36
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 37
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 38
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 39
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 41

test/integration/TestAssociation3WithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 25
 Warning
coding RequireThis Method call to 'initializeTypesAndSpecializationAndAssociations' needs "this.". 43
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 55
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 57
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 59
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 61
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 63
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 64
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 66
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 127
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 146

test/integration/TestBase.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 8
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 16

test/integration/TestBaseInterface.java

Severity Category Rule Message Line
 Warning
javadoc JavadocStyle First sentence should end with a period. 3
 Warning
javadoc JavadocMethod Expected @throws tag for 'Exception'. 16
 Warning
javadoc JavadocMethod Expected @throws tag for 'Exception'. 23

test/integration/TestBaseWithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 28
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 30
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 31
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 33
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 34
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 36
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 38
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 39
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 40
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 41
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 43
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 44
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 45
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 46
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 47
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 48
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 49
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 50
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 51
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 52
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 53
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 54
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 55
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 56
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 57
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 58
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 60
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 61
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 63
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 64
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 65
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 66
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 67
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 68
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 69
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 70
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 71
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 72
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 73
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 74
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 75
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 76
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 77
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 78
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 79
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 81
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 85
 Warning
javadoc JavadocMethod Expected @throws tag for 'PersistenceException'. 94
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 356
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 371
 Warning
javadoc JavadocMethod Expected @param tag for 'database'. 392

test/integration/TestContextWithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 15
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 27

test/integration/TestMutableSetIterator.java

Severity Category Rule Message Line
 Warning
javadoc JavadocStyle First sentence should end with a period. 16
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 21
 Warning
modifier ModifierOrder 'protected' modifier out of order with the JLS suggestions. 21
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 23
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 38
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 55
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 72

test/integration/TestMutableSetIteratorWithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 8

test/integration/TestPersonModel.java

Severity Category Rule Message Line
 Warning
javadoc JavadocStyle First sentence should end with a period. 39
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 44
 Warning
design VisibilityModifier Variable 'jonass' must be private and have accessor methods. 44
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 45
 Warning
design VisibilityModifier Variable 'patricks' must be private and have accessor methods. 45
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 46
 Warning
design VisibilityModifier Variable 'alexs' must be private and have accessor methods. 46
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 47
 Warning
design VisibilityModifier Variable 'chriss' must be private and have accessor methods. 47
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 48
 Warning
design VisibilityModifier Variable 'i12345' must be private and have accessor methods. 48
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 49
 Warning
design VisibilityModifier Variable 'i23456' must be private and have accessor methods. 49
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 50
 Warning
design VisibilityModifier Variable 'i34567' must be private and have accessor methods. 50
 Warning
javadoc JavadocVariable Missing a Javadoc comment. 51
 Warning
design VisibilityModifier Variable 'i45678' must be private and have accessor methods. 51
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 53
 Warning
modifier ModifierOrder 'protected' modifier out of order with the JLS suggestions. 53
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 55
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 64
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 82
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 94
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 107
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 126
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 139
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 154
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 171
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 219
 Warning
javadoc JavadocMethod Missing a Javadoc comment. 293

test/integration/TestPersonModelWithDB.java

Severity Category Rule Message Line
 Warning
javadoc JavadocType Missing a Javadoc comment. 12