Checkstyle Results

The following document contains the results of Checkstyle 9.3 with sun_checks.xml ruleset.

Summary

Files  Info  Warnings  Errors
30 0 0 489

Files

File  I  W  E
org/apache/creadur/tentacles/Archive.java 0 0 43
org/apache/creadur/tentacles/Configuration.java 0 0 19
org/apache/creadur/tentacles/Deauthorize.java 0 0 29
org/apache/creadur/tentacles/FileSystem.java 0 0 28
org/apache/creadur/tentacles/IOSystem.java 0 0 35
org/apache/creadur/tentacles/Layout.java 0 0 13
org/apache/creadur/tentacles/License.java 0 0 23
org/apache/creadur/tentacles/LicenseType.java 0 0 12
org/apache/creadur/tentacles/Licenses.java 0 0 9
org/apache/creadur/tentacles/Main.java 0 0 38
org/apache/creadur/tentacles/NexusClient.java 0 0 22
org/apache/creadur/tentacles/Notice.java 0 0 22
org/apache/creadur/tentacles/Platform.java 0 0 14
org/apache/creadur/tentacles/Reports.java 0 0 5
org/apache/creadur/tentacles/RepositoryType.java 0 0 7
org/apache/creadur/tentacles/TemplateBuilder.java 0 0 19
org/apache/creadur/tentacles/Templates.java 0 0 6
org/apache/creadur/tentacles/TentaclesResources.java 0 0 9
org/apache/creadur/tentacles/filter/AndFilter.java 0 0 4
org/apache/creadur/tentacles/filter/DeclaredFilter.java 0 0 5
org/apache/creadur/tentacles/filter/FilesOnlyFilter.java 0 0 2
org/apache/creadur/tentacles/filter/Filters.java 0 0 23
org/apache/creadur/tentacles/filter/IsArchiveInPathFilter.java 0 0 4
org/apache/creadur/tentacles/filter/LegalFilter.java 0 0 5
org/apache/creadur/tentacles/filter/LicenseFilter.java 0 0 2
org/apache/creadur/tentacles/filter/ListOfFilesFilter.java 0 0 7
org/apache/creadur/tentacles/filter/NotFilter.java 0 0 3
org/apache/creadur/tentacles/filter/NoticeFilter.java 0 0 3
org/apache/creadur/tentacles/model/Archives.java 0 0 78

Rules

Category Rule Violations Severity
blocks EmptyBlock 1  Error
coding HiddenField 46  Error
MagicNumber 4  Error
design DesignForExtension 104  Error
HideUtilityClassConstructor 1  Error
VisibilityModifier 1  Error
imports AvoidStarImport 4  Error
javadoc JavadocPackage 3  Error
JavadocStyle 9  Error
JavadocVariable 89  Error
MissingJavadocMethod 124  Error
misc FinalParameters 19  Error
NewlineAtEndOfFile 13  Error
modifier RedundantModifier 3  Error
naming ConstantName 4  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
12  Error
sizes LineLength
  • fileExtensions: "java"
45  Error
whitespace FileTabCharacter 6  Error
WhitespaceAfter 1  Error

Details

org/apache/creadur/tentacles/Archive.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 48
 Error coding HiddenField 'file' hides a field. 48
 Error coding HiddenField 'fileSystem' hides a field. 48
 Error coding HiddenField 'layout' hides a field. 49
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getDeclaredLicenses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getDeclaredLicenses' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 59
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getDeclaredNotices' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getDeclaredNotices' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 63
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getOtherLicenses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getOtherLicenses' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 67
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getOtherNotices' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getOtherNotices' static/final/abstract/empty, or adding allowed annotation for the method. 71
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 71
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getLicenses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getLicenses' static/final/abstract/empty, or adding allowed annotation for the method. 75
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 75
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getNotices' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getNotices' static/final/abstract/empty, or adding allowed annotation for the method. 79
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 79
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getUri' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getUri' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 83
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getFile' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getFile' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getLegal' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getLegal' static/final/abstract/empty, or adding allowed annotation for the method. 91
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 91
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'getOtherLegal' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'getOtherLegal' static/final/abstract/empty, or adding allowed annotation for the method. 95
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 95
 Error coding HiddenField 'map' hides a field. 112
 Error coding HiddenField 'file' hides a field. 113
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'contentsDirectory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'contentsDirectory' static/final/abstract/empty, or adding allowed annotation for the method. 132
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 132
 Error design DesignForExtension Class 'Archive' looks like designed for extension (can be subclassed), but the method 'contentsURI' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archive' final or making the method 'contentsURI' static/final/abstract/empty, or adding allowed annotation for the method. 153
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 153

org/apache/creadur/tentacles/Configuration.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error sizes LineLength Line is longer than 80 characters (found 91). 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 48
 Error sizes LineLength Line is longer than 80 characters (found 86). 49
 Error sizes LineLength Line is longer than 80 characters (found 82). 53
 Error design DesignForExtension Class 'Configuration' looks like designed for extension (can be subclassed), but the method 'getFileRepositoryPathNameFilter' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Configuration' final or making the method 'getFileRepositoryPathNameFilter' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 Error design DesignForExtension Class 'Configuration' looks like designed for extension (can be subclassed), but the method 'getStagingRepositoryURI' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Configuration' final or making the method 'getStagingRepositoryURI' static/final/abstract/empty, or adding allowed annotation for the method. 61
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 61
 Error design DesignForExtension Class 'Configuration' looks like designed for extension (can be subclassed), but the method 'getRootDirectoryForLocalOutput' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Configuration' final or making the method 'getRootDirectoryForLocalOutput' static/final/abstract/empty, or adding allowed annotation for the method. 65
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 65
 Error sizes LineLength Line is longer than 80 characters (found 92). 75

org/apache/creadur/tentacles/Deauthorize.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 35
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 37
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error sizes LineLength Line is longer than 80 characters (found 84). 51
 Error sizes LineLength Line is longer than 80 characters (found 81). 63
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error sizes LineLength Line is longer than 80 characters (found 83). 84
 Error sizes LineLength Line is longer than 80 characters (found 83). 85
 Error sizes LineLength Line is longer than 80 characters (found 84). 86
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error sizes LineLength Line is longer than 80 characters (found 81). 89
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error sizes LineLength Line is longer than 80 characters (found 83). 93
 Error regexp RegexpSingleline Line has trailing spaces. 96
 Error sizes LineLength Line is longer than 80 characters (found 84). 106
 Error sizes LineLength Line is longer than 80 characters (found 86). 115
 Error sizes LineLength Line is longer than 80 characters (found 81). 116
 Error sizes LineLength Line is longer than 80 characters (found 93). 120
 Error sizes LineLength Line is longer than 80 characters (found 91). 123
 Error sizes LineLength Line is longer than 80 characters (found 87). 127
 Error sizes LineLength Line is longer than 80 characters (found 100). 130
 Error sizes LineLength Line is longer than 80 characters (found 84). 131
 Error sizes LineLength Line is longer than 80 characters (found 114). 134
 Error sizes LineLength Line is longer than 80 characters (found 104). 139
 Error sizes LineLength Line is longer than 80 characters (found 81). 147
 Error misc FinalParameters Parameter b should be final. 158

org/apache/creadur/tentacles/FileSystem.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 31
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'legalDocumentsUndeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'legalDocumentsUndeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 35
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'legalDocumentsDeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'legalDocumentsDeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 40
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 40
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'collect' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'collect' static/final/abstract/empty, or adding allowed annotation for the method. 45
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'collect' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'collect' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 58
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'mkparent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'mkparent' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 74
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'mkdirs' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'mkdirs' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 78
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'documentsFrom' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'documentsFrom' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 92
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'licensesFrom' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'licensesFrom' static/final/abstract/empty, or adding allowed annotation for the method. 96
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 96
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'noticesOnly' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'noticesOnly' static/final/abstract/empty, or adding allowed annotation for the method. 100
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 100
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'licensesDeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'licensesDeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 104
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 104
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'noticesDeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'noticesDeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 108
 Error design DesignForExtension Class 'FileSystem' looks like designed for extension (can be subclassed), but the method 'archivesInPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FileSystem' final or making the method 'archivesInPath' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 112
 Error sizes LineLength Line is longer than 80 characters (found 88). 114

org/apache/creadur/tentacles/IOSystem.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.logging.log4j.*. 19
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.io.*. 20
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'slurp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'slurp' static/final/abstract/empty, or adding allowed annotation for the method. 27
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 27
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'slurp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'slurp' static/final/abstract/empty, or adding allowed annotation for the method. 33
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 Error sizes LineLength Line is longer than 80 characters (found 90). 39
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'writeString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'writeString' static/final/abstract/empty, or adding allowed annotation for the method. 39
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error sizes LineLength Line is longer than 80 characters (found 86). 42
 Error sizes LineLength Line is longer than 80 characters (found 86). 54
 Error sizes LineLength Line is longer than 80 characters (found 84). 63
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'copy' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'copy' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 63
 Error sizes LineLength Line is longer than 80 characters (found 93). 72
 Error coding MagicNumber '1024' is a magic number. 73
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'copy' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'copy' static/final/abstract/empty, or adding allowed annotation for the method. 81
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 81
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'unzip' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'unzip' static/final/abstract/empty, or adding allowed annotation for the method. 85
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 85
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'close' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'close' static/final/abstract/empty, or adding allowed annotation for the method. 90
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 90
 Error sizes LineLength Line is longer than 80 characters (found 95). 99
 Error sizes LineLength Line is longer than 80 characters (found 88). 108
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'write' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'write' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 108
 Error coding MagicNumber '32768' is a magic number. 110
 Error sizes LineLength Line is longer than 80 characters (found 81). 113
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'read' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'read' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 113
 Error coding MagicNumber '32768' is a magic number. 115
 Error design DesignForExtension Class 'IOSystem' looks like designed for extension (can be subclassed), but the method 'read' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IOSystem' final or making the method 'read' static/final/abstract/empty, or adding allowed annotation for the method. 118
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 118

org/apache/creadur/tentacles/Layout.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 30
 Error design DesignForExtension Class 'Layout' looks like designed for extension (can be subclassed), but the method 'getLocalRootDirectory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Layout' final or making the method 'getLocalRootDirectory' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error design DesignForExtension Class 'Layout' looks like designed for extension (can be subclassed), but the method 'getOutputDirectory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Layout' final or making the method 'getOutputDirectory' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 Error design DesignForExtension Class 'Layout' looks like designed for extension (can be subclassed), but the method 'getRepositoryDirectory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Layout' final or making the method 'getRepositoryDirectory' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 55
 Error design DesignForExtension Class 'Layout' looks like designed for extension (can be subclassed), but the method 'getContentRootDirectory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Layout' final or making the method 'getContentRootDirectory' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 59

org/apache/creadur/tentacles/License.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error coding HiddenField 'key' hides a field. 34
 Error coding HiddenField 'text' hides a field. 34
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'getText' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'getText' static/final/abstract/empty, or adding allowed annotation for the method. 39
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'getKey' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'getKey' static/final/abstract/empty, or adding allowed annotation for the method. 43
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'getArchives' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'getArchives' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'getLocations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'getLocations' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'locations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'locations' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 55
 Error coding HiddenField 'locations' hides a field. 57
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error design DesignForExtension Class 'License' looks like designed for extension (can be subclassed), but the method 'implies' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'License' final or making the method 'implies' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 92

org/apache/creadur/tentacles/LicenseType.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error modifier RedundantModifier Redundant 'private' modifier. 42
 Error coding HiddenField 'resourceName' hides a field. 42
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 55
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 60

org/apache/creadur/tentacles/Licenses.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 82). 31
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 31
 Error coding HiddenField 'licenses' hides a field. 31
 Error design DesignForExtension Class 'Licenses' looks like designed for extension (can be subclassed), but the method 'from' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Licenses' final or making the method 'from' static/final/abstract/empty, or adding allowed annotation for the method. 37
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter text should be final. 50
 Error sizes LineLength Line is longer than 80 characters (found 82). 51

org/apache/creadur/tentacles/Main.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.logging.log4j.*. 37
 Error blocks EmptyBlock Must have at least one statement. 41
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 50
 Error sizes LineLength Line is longer than 80 characters (found 84). 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 64
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error coding HiddenField 'configuration' hides a field. 68
 Error coding HiddenField 'platform' hides a field. 68
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 74
 Error coding HiddenField 'configuration' hides a field. 74
 Error coding HiddenField 'platform' hides a field. 74
 Error coding HiddenField 'templates' hides a field. 75
 Error coding HiddenField 'layout' hides a field. 75
 Error sizes LineLength Line is longer than 80 characters (found 81). 88
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 96
 Error regexp RegexpSingleline Line has trailing spaces. 97
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 97
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error whitespace WhitespaceAfter 'if' is not followed by whitespace. 100
 Error sizes LineLength Line is longer than 80 characters (found 124). 101
 Error sizes LineLength Line is longer than 80 characters (found 168). 102
 Error regexp RegexpSingleline Line has trailing spaces. 106
 Error coding HiddenField 'licenses' hides a field. 155
 Error coding HiddenField 'licenses' hides a field. 177
 Error sizes LineLength Line is longer than 80 characters (found 81). 277
 Error coding HiddenField 'configuration' hides a field. 312

org/apache/creadur/tentacles/NexusClient.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.logging.log4j.*. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error sizes LineLength Line is longer than 80 characters (found 165). 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 49
 Error sizes LineLength Line is longer than 80 characters (found 88). 54
 Error design DesignForExtension Class 'NexusClient' looks like designed for extension (can be subclassed), but the method 'download' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'NexusClient' final or making the method 'download' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 62
 Error sizes LineLength Line is longer than 80 characters (found 99). 118
 Error misc FinalParameters Parameter tries should be final. 118
 Error coding MagicNumber '250' is a magic number. 125
 Error design DesignForExtension Class 'NexusClient' looks like designed for extension (can be subclassed), but the method 'crawl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'NexusClient' final or making the method 'crawl' static/final/abstract/empty, or adding allowed annotation for the method. 137
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 137
 Error sizes LineLength Line is longer than 80 characters (found 137). 149

org/apache/creadur/tentacles/Notice.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error coding HiddenField 'text' hides a field. 34
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'getText' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'getText' static/final/abstract/empty, or adding allowed annotation for the method. 39
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'getKey' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'getKey' static/final/abstract/empty, or adding allowed annotation for the method. 43
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'getArchives' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'getArchives' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'getLocations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'getLocations' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'locations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'locations' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 55
 Error coding HiddenField 'locations' hides a field. 57
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error design DesignForExtension Class 'Notice' looks like designed for extension (can be subclassed), but the method 'implies' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Notice' final or making the method 'implies' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 92

org/apache/creadur/tentacles/Platform.java

Severity Category Rule Message Line
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 Error coding HiddenField 'tentaclesResources' hides a field. 35
 Error coding HiddenField 'fileSystem' hides a field. 36
 Error coding HiddenField 'ioSystem' hides a field. 36
 Error design DesignForExtension Class 'Platform' looks like designed for extension (can be subclassed), but the method 'getTentaclesResources' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Platform' final or making the method 'getTentaclesResources' static/final/abstract/empty, or adding allowed annotation for the method. 43
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error design DesignForExtension Class 'Platform' looks like designed for extension (can be subclassed), but the method 'getFileSystem' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Platform' final or making the method 'getFileSystem' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error design DesignForExtension Class 'Platform' looks like designed for extension (can be subclassed), but the method 'getIoSystem' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Platform' final or making the method 'getIoSystem' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 51

org/apache/creadur/tentacles/Reports.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error design DesignForExtension Class 'Reports' looks like designed for extension (can be subclassed), but the method 'licenses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Reports' final or making the method 'licenses' static/final/abstract/empty, or adding allowed annotation for the method. 23
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 23
 Error design DesignForExtension Class 'Reports' looks like designed for extension (can be subclassed), but the method 'notices' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Reports' final or making the method 'notices' static/final/abstract/empty, or adding allowed annotation for the method. 28
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 28

org/apache/creadur/tentacles/RepositoryType.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error modifier RedundantModifier Redundant 'private' modifier. 29
 Error coding HiddenField 'prefix' hides a field. 29
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 37

org/apache/creadur/tentacles/TemplateBuilder.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 42
 Error coding HiddenField 'ioSystem' hides a field. 42
 Error coding HiddenField 'engine' hides a field. 43
 Error coding HiddenField 'tentaclesResources' hides a field. 44
 Error design DesignForExtension Class 'TemplateBuilder' looks like designed for extension (can be subclassed), but the method 'add' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TemplateBuilder' final or making the method 'add' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 51
 Error design DesignForExtension Class 'TemplateBuilder' looks like designed for extension (can be subclassed), but the method 'addAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TemplateBuilder' final or making the method 'addAll' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error design DesignForExtension Class 'TemplateBuilder' looks like designed for extension (can be subclassed), but the method 'apply' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TemplateBuilder' final or making the method 'apply' static/final/abstract/empty, or adding allowed annotation for the method. 61
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 61
 Error design DesignForExtension Class 'TemplateBuilder' looks like designed for extension (can be subclassed), but the method 'write' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TemplateBuilder' final or making the method 'write' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 69

org/apache/creadur/tentacles/Templates.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 30
 Error sizes LineLength Line is longer than 80 characters (found 95). 40
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 50

org/apache/creadur/tentacles/TentaclesResources.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 31
 Error coding HiddenField 'ioSystem' hides a field. 31
 Error design DesignForExtension Class 'TentaclesResources' looks like designed for extension (can be subclassed), but the method 'read' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TentaclesResources' final or making the method 'read' static/final/abstract/empty, or adding allowed annotation for the method. 36
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 Error design DesignForExtension Class 'TentaclesResources' looks like designed for extension (can be subclassed), but the method 'readText' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TentaclesResources' final or making the method 'readText' static/final/abstract/empty, or adding allowed annotation for the method. 43
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error design DesignForExtension Class 'TentaclesResources' looks like designed for extension (can be subclassed), but the method 'copyTo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'TentaclesResources' final or making the method 'copyTo' static/final/abstract/empty, or adding allowed annotation for the method. 48
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 48

org/apache/creadur/tentacles/filter/AndFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error design VisibilityModifier Variable 'filters' must be private and have accessor methods. 28
 Error coding HiddenField 'filters' hides a field. 30

org/apache/creadur/tentacles/filter/DeclaredFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error coding HiddenField 'file' hides a field. 27
 Error misc FinalParameters Parameter file should be final. 32
 Error coding HiddenField 'file' hides a field. 32

org/apache/creadur/tentacles/filter/FilesOnlyFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocPackage Missing package-info.java file. 1

org/apache/creadur/tentacles/filter/Filters.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 31
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'filesOnly' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'filesOnly' static/final/abstract/empty, or adding allowed annotation for the method. 38
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 38
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'licensesOnly' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'licensesOnly' static/final/abstract/empty, or adding allowed annotation for the method. 42
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 42
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'noticesOnly' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'noticesOnly' static/final/abstract/empty, or adding allowed annotation for the method. 46
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 46
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'legalOnly' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'legalOnly' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 50
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'licensesDeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'licensesDeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 54
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'noticesDeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'noticesDeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 59
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'legalDocumentsUndeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'legalDocumentsUndeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 63
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'legalDocumentsDeclaredIn' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'legalDocumentsDeclaredIn' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error design DesignForExtension Class 'Filters' looks like designed for extension (can be subclassed), but the method 'archivesInPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Filters' final or making the method 'archivesInPath' static/final/abstract/empty, or adding allowed annotation for the method. 72
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 72

org/apache/creadur/tentacles/filter/IsArchiveInPathFilter.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 84). 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error coding HiddenField 'pathNameFilter' hides a field. 29

org/apache/creadur/tentacles/filter/LegalFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error naming ConstantName Name 'notice' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error naming ConstantName Name 'license' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 27

org/apache/creadur/tentacles/filter/LicenseFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 22

org/apache/creadur/tentacles/filter/ListOfFilesFilter.java

Severity Category Rule Message Line
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error misc FinalParameters Parameter files should be final. 31
 Error design DesignForExtension Class 'ListOfFilesFilter' looks like designed for extension (can be subclassed), but the method 'accept' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ListOfFilesFilter' final or making the method 'accept' static/final/abstract/empty, or adding allowed annotation for the method. 35
 Error misc FinalParameters Parameter pathname should be final. 36
 Error design DesignForExtension Class 'ListOfFilesFilter' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ListOfFilesFilter' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error sizes LineLength Line is longer than 80 characters (found 82). 54

org/apache/creadur/tentacles/filter/NotFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error coding HiddenField 'filter' hides a field. 27

org/apache/creadur/tentacles/filter/NoticeFilter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 22
 Error modifier RedundantModifier Redundant 'public' modifier. 22

org/apache/creadur/tentacles/model/Archives.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error javadoc JavadocStyle First sentence should end with a period. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocStyle First sentence should end with a period. 32
 Error design DesignForExtension Class 'Archives' looks like designed for extension (can be subclassed), but the method 'getArchives' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archives' final or making the method 'getArchives' static/final/abstract/empty, or adding allowed annotation for the method. 38
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 38
 Error design DesignForExtension Class 'Archives' looks like designed for extension (can be subclassed), but the method 'add' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archives' final or making the method 'add' static/final/abstract/empty, or adding allowed annotation for the method. 42
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 42
 Error misc FinalParameters Parameter item should be final. 42
 Error design DesignForExtension Class 'Archives' looks like designed for extension (can be subclassed), but the method 'addItem' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Archives' final or making the method 'addItem' static/final/abstract/empty, or adding allowed annotation for the method. 46
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 46
 Error javadoc JavadocStyle First sentence should end with a period. 54
 Error javadoc JavadocStyle First sentence should end with a period. 60
 Error javadoc JavadocStyle First sentence should end with a period. 65
 Error javadoc JavadocStyle First sentence should end with a period. 70
 Error javadoc JavadocStyle First sentence should end with a period. 75
 Error javadoc JavadocStyle First sentence should end with a period. 80
 Error javadoc JavadocStyle First sentence should end with a period. 86
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'getPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'getPath' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 92
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'setPath' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'setPath' static/final/abstract/empty, or adding allowed annotation for the method. 96
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 96
 Error misc FinalParameters Parameter path should be final. 96
 Error coding HiddenField 'path' hides a field. 96
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'getName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'getName' static/final/abstract/empty, or adding allowed annotation for the method. 100
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 100
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'setName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'setName' static/final/abstract/empty, or adding allowed annotation for the method. 104
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 104
 Error misc FinalParameters Parameter name should be final. 104
 Error coding HiddenField 'name' hides a field. 104
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'getType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'getType' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 108
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'setType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'setType' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 112
 Error misc FinalParameters Parameter type should be final. 112
 Error coding HiddenField 'type' hides a field. 112
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'getJars' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'getJars' static/final/abstract/empty, or adding allowed annotation for the method. 116
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 116
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'setJars' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'setJars' static/final/abstract/empty, or adding allowed annotation for the method. 120
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 120
 Error misc FinalParameters Parameter jars should be final. 120
 Error coding HiddenField 'jars' hides a field. 120
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'getLicense' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'getLicense' static/final/abstract/empty, or adding allowed annotation for the method. 124
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 124
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'setLicense' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'setLicense' static/final/abstract/empty, or adding allowed annotation for the method. 128
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 128
 Error misc FinalParameters Parameter license should be final. 128
 Error coding HiddenField 'license' hides a field. 128
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'getNotice' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'getNotice' static/final/abstract/empty, or adding allowed annotation for the method. 132
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 132
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'setNotice' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'setNotice' static/final/abstract/empty, or adding allowed annotation for the method. 136
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 136
 Error misc FinalParameters Parameter notice should be final. 136
 Error coding HiddenField 'notice' hides a field. 136
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'path' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'path' static/final/abstract/empty, or adding allowed annotation for the method. 140
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 140
 Error misc FinalParameters Parameter path should be final. 140
 Error coding HiddenField 'path' hides a field. 140
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'name' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'name' static/final/abstract/empty, or adding allowed annotation for the method. 145
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 145
 Error misc FinalParameters Parameter name should be final. 145
 Error coding HiddenField 'name' hides a field. 145
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'type' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'type' static/final/abstract/empty, or adding allowed annotation for the method. 150
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 150
 Error misc FinalParameters Parameter type should be final. 150
 Error coding HiddenField 'type' hides a field. 150
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'jars' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'jars' static/final/abstract/empty, or adding allowed annotation for the method. 155
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 155
 Error misc FinalParameters Parameter jars should be final. 155
 Error coding HiddenField 'jars' hides a field. 155
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'license' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'license' static/final/abstract/empty, or adding allowed annotation for the method. 160
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 160
 Error misc FinalParameters Parameter license should be final. 160
 Error coding HiddenField 'license' hides a field. 160
 Error design DesignForExtension Class 'Item' looks like designed for extension (can be subclassed), but the method 'notice' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Item' final or making the method 'notice' static/final/abstract/empty, or adding allowed annotation for the method. 165
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 165
 Error misc FinalParameters Parameter notice should be final. 165
 Error coding HiddenField 'notice' hides a field. 165