Checkstyle Results

The following document contains the results of Checkstyle 6.11.2 with http://depot.universaal.org/Resources/Checkstyle/uaal-checkstyle-config.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
42 37 7 433

Files

File  I  W  E
org/universAAL/tools/ucc/configuration/model/Activator.java 0 1 9
org/universAAL/tools/ucc/configuration/model/Cardinality.java 0 0 11
org/universAAL/tools/ucc/configuration/model/ConfigOptionRegistry.java 0 0 26
org/universAAL/tools/ucc/configuration/model/ConfigurationOption.java 3 0 82
org/universAAL/tools/ucc/configuration/model/Configurator.java 0 0 9
org/universAAL/tools/ucc/configuration/model/MapConfigurationOption.java 0 0 5
org/universAAL/tools/ucc/configuration/model/SimpleConfigItemTypes.java 3 0 4
org/universAAL/tools/ucc/configuration/model/SimpleConfigurationOption.java 0 0 4
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Category.java 4 0 12
org/universAAL/tools/ucc/configuration/model/configurationdefinition/ConfigItem.java 2 0 24
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Configuration.java 1 0 16
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Dependency.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Item.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/MapConfigItem.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/ObjectFactory.java 2 1 45
org/universAAL/tools/ucc/configuration/model/configurationdefinition/OnConfigurationModelChangedListener.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Option.java 1 0 9
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Options.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/SPARQLConfigItem.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/SimpleConfigItem.java 1 0 6
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Validator.java 2 0 6
org/universAAL/tools/ucc/configuration/model/configurationdefinition/Validators.java 1 0 3
org/universAAL/tools/ucc/configuration/model/configurationdefinition/package-info.java 2 0 1
org/universAAL/tools/ucc/configuration/model/configurationinstances/ConfigOption.java 2 0 6
org/universAAL/tools/ucc/configuration/model/configurationinstances/ConfigurationInstance.java 2 0 25
org/universAAL/tools/ucc/configuration/model/configurationinstances/ObjectFactory.java 2 1 15
org/universAAL/tools/ucc/configuration/model/configurationinstances/Value.java 1 0 6
org/universAAL/tools/ucc/configuration/model/configurationinstances/package-info.java 2 0 1
org/universAAL/tools/ucc/configuration/model/exceptions/ValidationException.java 0 1 1
org/universAAL/tools/ucc/configuration/model/interfaces/ConfigurationValidator.java 0 1 7
org/universAAL/tools/ucc/configuration/model/interfaces/ConfigurationValidatorFactory.java 0 0 2
org/universAAL/tools/ucc/configuration/model/interfaces/ModelRegistryChangedListener.java 0 0 1
org/universAAL/tools/ucc/configuration/model/interfaces/OnConfigurationChangedListener.java 0 0 1
org/universAAL/tools/ucc/configuration/model/interfaces/OnConfigurationChangedListenerFactory.java 0 0 2
org/universAAL/tools/ucc/configuration/model/servicetracker/ListenerServiceTracker.java 0 1 10
org/universAAL/tools/ucc/configuration/model/servicetracker/ValidationServiceTracker.java 0 0 12
org/universAAL/tools/ucc/configuration/model/validators/DoubleMinMaxValidator.java 0 1 10
org/universAAL/tools/ucc/configuration/model/validators/DoubleValidator.java 0 0 8
org/universAAL/tools/ucc/configuration/model/validators/IntMinMaxValidator.java 0 0 10
org/universAAL/tools/ucc/configuration/model/validators/IntegerValidator.java 0 0 8
org/universAAL/tools/ucc/configuration/model/validators/RegExpValidator.java 0 0 10
org/universAAL/tools/ucc/configuration/model/validators/URLValidator.java 0 0 8

Rules

Category Rule Violations Severity
design DesignForExtension 167  Error
HideUtilityClassConstructor 1  Error
VisibilityModifier
  • protectedAllowed: "true"
28  Error
imports UnusedImports 1  Info
javadoc JavadocMethod 125  Error
JavadocPackage
  • allowLegacy: "true"
5  Warning
JavadocStyle 25  Error
JavadocType 8  Error
JavadocVariable 79  Error
modifier ModifierOrder 5  Info
naming ConstantName 2  Warning
sizes LineLength
  • max: "120"
  • tabWidth: "4"
29  Info
whitespace NoWhitespaceBefore 2  Info

Details

org/universAAL/tools/ucc/configuration/model/Activator.java

Severity Category Rule Message Line
 Warning javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 8
 Error javadoc JavadocVariable Missing a Javadoc comment. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 11
 Error javadoc JavadocMethod Missing a Javadoc comment. 13
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error design DesignForExtension Method 'start' is not designed for extension - needs to be abstract, final or empty. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 28
 Error design DesignForExtension Method 'stop' is not designed for extension - needs to be abstract, final or empty. 40
 Error javadoc JavadocMethod Missing a Javadoc comment. 40

org/universAAL/tools/ucc/configuration/model/Cardinality.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 3
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Error design VisibilityModifier Variable 'bottom' must be private and have accessor methods. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 14
 Error design VisibilityModifier Variable 'top' must be private and have accessor methods. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error design VisibilityModifier Variable 'cardinality' must be private and have accessor methods. 16
 Error javadoc JavadocMethod Expected @param tag for 'cardinality'. 23
 Error design DesignForExtension Method 'isRequired' is not designed for extension - needs to be abstract, final or empty. 39
 Error design DesignForExtension Method 'allowMultiselection' is not designed for extension - needs to be abstract, final or empty. 49
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 56

org/universAAL/tools/ucc/configuration/model/ConfigOptionRegistry.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error design VisibilityModifier Variable 'mRegistry' must be private and have accessor methods. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error design VisibilityModifier Variable 'listeners' must be private and have accessor methods. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 27
 Error design DesignForExtension Method 'register' is not designed for extension - needs to be abstract, final or empty. 33
 Error javadoc JavadocMethod Missing a Javadoc comment. 33
 Error design DesignForExtension Method 'getConfigOptionForId' is not designed for extension - needs to be abstract, final or empty. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error design DesignForExtension Method 'removeConfigOption' is not designed for extension - needs to be abstract, final or empty. 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error design DesignForExtension Method 'getAll' is not designed for extension - needs to be abstract, final or empty. 61
 Error javadoc JavadocMethod Missing a Javadoc comment. 61
 Error design DesignForExtension Method 'removeAll' is not designed for extension - needs to be abstract, final or empty. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error design DesignForExtension Method 'addListener' is not designed for extension - needs to be abstract, final or empty. 75
 Error javadoc JavadocMethod Missing a Javadoc comment. 75
 Error design DesignForExtension Method 'removeListener' is not designed for extension - needs to be abstract, final or empty. 81
 Error javadoc JavadocMethod Missing a Javadoc comment. 81
 Error design DesignForExtension Method 'removeAllListeners' is not designed for extension - needs to be abstract, final or empty. 85
 Error javadoc JavadocMethod Missing a Javadoc comment. 85
 Error javadoc JavadocMethod Missing a Javadoc comment. 89
 Error design DesignForExtension Method 'size' is not designed for extension - needs to be abstract, final or empty. 95
 Error javadoc JavadocMethod Missing a Javadoc comment. 95
 Error design DesignForExtension Method 'isEmpty' is not designed for extension - needs to be abstract, final or empty. 99
 Error javadoc JavadocMethod Missing a Javadoc comment. 99

org/universAAL/tools/ucc/configuration/model/ConfigurationOption.java

Severity Category Rule Message Line
 Info imports UnusedImports Unused import - org.osgi.framework.FrameworkUtil. 7
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error design VisibilityModifier Variable 'configOption' must be private and have accessor methods. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error design VisibilityModifier Variable 'configRegestry' must be private and have accessor methods. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error design VisibilityModifier Variable 'category' must be private and have accessor methods. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error design VisibilityModifier Variable 'validators' must be private and have accessor methods. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error design VisibilityModifier Variable 'listeners' must be private and have accessor methods. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error design VisibilityModifier Variable 'externalListeners' must be private and have accessor methods. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error design VisibilityModifier Variable 'order' must be private and have accessor methods. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error design VisibilityModifier Variable 'isValid' must be private and have accessor methods. 49
 Error javadoc JavadocMethod Expected @param tag for 'configItem'. 60
 Error javadoc JavadocMethod Expected @param tag for 'category'. 60
 Error javadoc JavadocMethod Expected @param tag for 'configOptionRegistry'. 60
 Error design DesignForExtension Method 'setValue' is not designed for extension - needs to be abstract, final or empty. 88
 Error javadoc JavadocMethod Expected @param tag for 'value'. 88
 Error javadoc JavadocMethod Expected @throws tag for 'ValidationException'. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 105
 Error design DesignForExtension Method 'setValue' is not designed for extension - needs to be abstract, final or empty. 115
 Error javadoc JavadocMethod Expected @param tag for 'configValues'. 115
 Error javadoc JavadocMethod Expected @throws tag for 'ValidationException'. 115
 Error design DesignForExtension Method 'getValue' is not designed for extension - needs to be abstract, final or empty. 126
 Error javadoc JavadocMethod Missing a Javadoc comment. 126
 Error design DesignForExtension Method 'getValuesCount' is not designed for extension - needs to be abstract, final or empty. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error design DesignForExtension Method 'doDeepValidation' is not designed for extension - needs to be abstract, final or empty. 143
 Error javadoc JavadocMethod Expected @throws tag for 'ValidationException'. 143
 Error design DesignForExtension Method 'addListener' is not designed for extension - needs to be abstract, final or empty. 159
 Error javadoc JavadocMethod Missing a Javadoc comment. 159
 Error design DesignForExtension Method 'addExternalListener' is not designed for extension - needs to be abstract, final or empty. 167
 Error javadoc JavadocMethod Missing a Javadoc comment. 167
 Error design DesignForExtension Method 'isActive' is not designed for extension - needs to be abstract, final or empty. 175
 Error javadoc JavadocMethod Missing a Javadoc comment. 175
 Error design DesignForExtension Method 'getValues' is not designed for extension - needs to be abstract, final or empty. 179
 Error javadoc JavadocMethod Missing a Javadoc comment. 179
 Info whitespace NoWhitespaceBefore ',' is preceded with whitespace. 224
 Info whitespace NoWhitespaceBefore ',' is preceded with whitespace. 271
 Error design DesignForExtension Method 'isRequired' is not designed for extension - needs to be abstract, final or empty. 279
 Error javadoc JavadocMethod Missing a Javadoc comment. 279
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 283
 Error javadoc JavadocMethod Missing a Javadoc comment. 283
 Error javadoc JavadocMethod Expected an @return tag. 293
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 293
 Error design DesignForExtension Method 'hasValue' is not designed for extension - needs to be abstract, final or empty. 307
 Error javadoc JavadocMethod Missing a Javadoc comment. 307
 Error javadoc JavadocMethod Expected an @return tag. 320
 Error design DesignForExtension Method 'getCategory' is not designed for extension - needs to be abstract, final or empty. 336
 Error javadoc JavadocMethod Missing a Javadoc comment. 336
 Error design DesignForExtension Method 'setCardinality' is not designed for extension - needs to be abstract, final or empty. 340
 Error javadoc JavadocMethod Missing a Javadoc comment. 340
 Error design DesignForExtension Method 'getConfigOption' is not designed for extension - needs to be abstract, final or empty. 347
 Error javadoc JavadocMethod Missing a Javadoc comment. 347
 Error design DesignForExtension Method 'addValidator' is not designed for extension - needs to be abstract, final or empty. 351
 Error javadoc JavadocMethod Missing a Javadoc comment. 351
 Error design DesignForExtension Method 'updateListeners' is not designed for extension - needs to be abstract, final or empty. 361
 Error javadoc JavadocMethod Missing a Javadoc comment. 361
 Error design DesignForExtension Method 'updateExternalListeners' is not designed for extension - needs to be abstract, final or empty. 367
 Error javadoc JavadocMethod Missing a Javadoc comment. 367
 Error design DesignForExtension Method 'checkDependencies' is not designed for extension - needs to be abstract, final or empty. 386
 Error design DesignForExtension Method 'getOrder' is not designed for extension - needs to be abstract, final or empty. 407
 Error javadoc JavadocMethod Missing a Javadoc comment. 407
 Error design DesignForExtension Method 'getDescription' is not designed for extension - needs to be abstract, final or empty. 411
 Error javadoc JavadocMethod Missing a Javadoc comment. 411
 Error design DesignForExtension Method 'getLabel' is not designed for extension - needs to be abstract, final or empty. 415
 Error javadoc JavadocMethod Missing a Javadoc comment. 415
 Error design DesignForExtension Method 'compareTo' is not designed for extension - needs to be abstract, final or empty. 419
 Error javadoc JavadocMethod Missing a Javadoc comment. 419
 Error design DesignForExtension Method 'removeListener' is not designed for extension - needs to be abstract, final or empty. 429
 Error javadoc JavadocMethod Missing a Javadoc comment. 429
 Error design DesignForExtension Method 'setIsActive' is not designed for extension - needs to be abstract, final or empty. 433
 Error javadoc JavadocMethod Missing a Javadoc comment. 433
 Error design DesignForExtension Method 'removeValidator' is not designed for extension - needs to be abstract, final or empty. 440
 Error javadoc JavadocMethod Missing a Javadoc comment. 440
 Error design DesignForExtension Method 'updateValidatorAttributesForId' is not designed for extension - needs to be abstract, final or empty. 445
 Error javadoc JavadocMethod Missing a Javadoc comment. 445
 Error design DesignForExtension Method 'removeExternalListener' is not designed for extension - needs to be abstract, final or empty. 450
 Error javadoc JavadocMethod Missing a Javadoc comment. 450

org/universAAL/tools/ucc/configuration/model/Configurator.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error design DesignForExtension Method 'getConfigDefinition' is not designed for extension - needs to be abstract, final or empty. 20
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error design DesignForExtension Method 'getConfigInstance' is not designed for extension - needs to be abstract, final or empty. 24
 Error javadoc JavadocMethod Missing a Javadoc comment. 24
 Error javadoc JavadocMethod Missing a Javadoc comment. 28
 Error design DesignForExtension Method 'setConfigurationInstance' is not designed for extension - needs to be abstract, final or empty. 33
 Error javadoc JavadocMethod Missing a Javadoc comment. 33

org/universAAL/tools/ucc/configuration/model/MapConfigurationOption.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error design DesignForExtension Method 'allowMultiselection' is not designed for extension - needs to be abstract, final or empty. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 25
 Error design DesignForExtension Method 'getOptions' is not designed for extension - needs to be abstract, final or empty. 29
 Error javadoc JavadocMethod Missing a Javadoc comment. 29

org/universAAL/tools/ucc/configuration/model/SimpleConfigItemTypes.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 11
 Error javadoc JavadocVariable Missing a Javadoc comment. 13
 Info modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 14
 Info modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 14
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Info modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 15

org/universAAL/tools/ucc/configuration/model/SimpleConfigurationOption.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Missing a Javadoc comment. 21
 Error design DesignForExtension Method 'getType' is not designed for extension - needs to be abstract, final or empty. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 26
 Error design DesignForExtension Method 'setDefaultValue' is not designed for extension - needs to be abstract, final or empty. 33

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Category.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 134). 36
 Info sizes LineLength Line is longer than 120 characters (found 128). 37
 Info sizes LineLength Line is longer than 120 characters (found 134). 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error javadoc JavadocMethod Expected an @return tag. 96
 Error design DesignForExtension Method 'getSPARQLConfigItemAndMapConfigItemAndSimpleConfigItem' is not designed for extension - needs to be abstract, final or empty. 96
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 109
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 120
 Error design DesignForExtension Method 'getLabel' is not designed for extension - needs to be abstract, final or empty. 130
 Error design DesignForExtension Method 'setLabel' is not designed for extension - needs to be abstract, final or empty. 141
 Error design DesignForExtension Method 'getDescription' is not designed for extension - needs to be abstract, final or empty. 151
 Error design DesignForExtension Method 'setDescription' is not designed for extension - needs to be abstract, final or empty. 162

org/universAAL/tools/ucc/configuration/model/configurationdefinition/ConfigItem.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 150). 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error design DesignForExtension Method 'getLabel' is not designed for extension - needs to be abstract, final or empty. 85
 Error design DesignForExtension Method 'setLabel' is not designed for extension - needs to be abstract, final or empty. 96
 Error design DesignForExtension Method 'getDescription' is not designed for extension - needs to be abstract, final or empty. 106
 Error design DesignForExtension Method 'setDescription' is not designed for extension - needs to be abstract, final or empty. 117
 Error design DesignForExtension Method 'getDependencies' is not designed for extension - needs to be abstract, final or empty. 127
 Error design DesignForExtension Method 'setDependencies' is not designed for extension - needs to be abstract, final or empty. 138
 Error design DesignForExtension Method 'getValidators' is not designed for extension - needs to be abstract, final or empty. 148
 Error design DesignForExtension Method 'setValidators' is not designed for extension - needs to be abstract, final or empty. 159
 Error design DesignForExtension Method 'getOnConfigurationModelChangedListener' is not designed for extension - needs to be abstract, final or empty. 169
 Error design DesignForExtension Method 'setOnConfigurationModelChangedListener' is not designed for extension - needs to be abstract, final or empty. 180
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 190
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 201
 Error design DesignForExtension Method 'isActive' is not designed for extension - needs to be abstract, final or empty. 211
 Error design DesignForExtension Method 'setActive' is not designed for extension - needs to be abstract, final or empty. 226
 Error design DesignForExtension Method 'getCardinality' is not designed for extension - needs to be abstract, final or empty. 236
 Error design DesignForExtension Method 'setCardinality' is not designed for extension - needs to be abstract, final or empty. 251

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Configuration.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error javadoc JavadocMethod Expected an @return tag. 95
 Error design DesignForExtension Method 'getCategory' is not designed for extension - needs to be abstract, final or empty. 95
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 108
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 119
 Error design DesignForExtension Method 'getBundlename' is not designed for extension - needs to be abstract, final or empty. 129
 Error design DesignForExtension Method 'setBundlename' is not designed for extension - needs to be abstract, final or empty. 140
 Error design DesignForExtension Method 'getVersion' is not designed for extension - needs to be abstract, final or empty. 150
 Error design DesignForExtension Method 'setVersion' is not designed for extension - needs to be abstract, final or empty. 161
 Error design DesignForExtension Method 'getAuthor' is not designed for extension - needs to be abstract, final or empty. 171
 Error design DesignForExtension Method 'setAuthor' is not designed for extension - needs to be abstract, final or empty. 182
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 186

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Dependency.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocMethod Expected an @return tag. 68
 Error design DesignForExtension Method 'getItem' is not designed for extension - needs to be abstract, final or empty. 68

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Item.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 52
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 63

org/universAAL/tools/ucc/configuration/model/configurationdefinition/MapConfigItem.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error design DesignForExtension Method 'getOptions' is not designed for extension - needs to be abstract, final or empty. 50
 Error design DesignForExtension Method 'setOptions' is not designed for extension - needs to be abstract, final or empty. 61

org/universAAL/tools/ucc/configuration/model/configurationdefinition/ObjectFactory.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Info modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 30
 Warning naming ConstantName Name '_Configuration_QNAME' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 30
 Error javadoc JavadocStyle First sentence should end with a period. 32
 Error javadoc JavadocStyle First sentence should end with a period. 41
 Error javadoc JavadocMethod Expected an @return tag. 45
 Error design DesignForExtension Method 'createConfigItem' is not designed for extension - needs to be abstract, final or empty. 45
 Error javadoc JavadocStyle First sentence should end with a period. 49
 Error javadoc JavadocMethod Expected an @return tag. 53
 Error design DesignForExtension Method 'createValidators' is not designed for extension - needs to be abstract, final or empty. 53
 Error javadoc JavadocStyle First sentence should end with a period. 57
 Error javadoc JavadocMethod Expected an @return tag. 61
 Error design DesignForExtension Method 'createValidator' is not designed for extension - needs to be abstract, final or empty. 61
 Error javadoc JavadocStyle First sentence should end with a period. 65
 Error javadoc JavadocMethod Expected an @return tag. 69
 Error design DesignForExtension Method 'createOptions' is not designed for extension - needs to be abstract, final or empty. 69
 Error javadoc JavadocStyle First sentence should end with a period. 73
 Error javadoc JavadocMethod Expected an @return tag. 77
 Error design DesignForExtension Method 'createCategory' is not designed for extension - needs to be abstract, final or empty. 77
 Error javadoc JavadocStyle First sentence should end with a period. 81
 Error javadoc JavadocMethod Expected an @return tag. 85
 Error design DesignForExtension Method 'createOption' is not designed for extension - needs to be abstract, final or empty. 85
 Error javadoc JavadocStyle First sentence should end with a period. 89
 Error javadoc JavadocMethod Expected an @return tag. 93
 Error design DesignForExtension Method 'createSimpleConfigItem' is not designed for extension - needs to be abstract, final or empty. 93
 Error javadoc JavadocStyle First sentence should end with a period. 97
 Error javadoc JavadocMethod Expected an @return tag. 101
 Error design DesignForExtension Method 'createMapConfigItem' is not designed for extension - needs to be abstract, final or empty. 101
 Error javadoc JavadocStyle First sentence should end with a period. 105
 Error javadoc JavadocMethod Expected an @return tag. 109
 Error design DesignForExtension Method 'createDependency' is not designed for extension - needs to be abstract, final or empty. 109
 Error javadoc JavadocStyle First sentence should end with a period. 113
 Error javadoc JavadocMethod Expected an @return tag. 117
 Error design DesignForExtension Method 'createOnConfigurationModelChangedListener' is not designed for extension - needs to be abstract, final or empty. 117
 Error javadoc JavadocStyle First sentence should end with a period. 121
 Error javadoc JavadocMethod Expected an @return tag. 125
 Error design DesignForExtension Method 'createSPARQLConfigItem' is not designed for extension - needs to be abstract, final or empty. 125
 Error javadoc JavadocStyle First sentence should end with a period. 129
 Error javadoc JavadocMethod Expected an @return tag. 133
 Error design DesignForExtension Method 'createConfiguration' is not designed for extension - needs to be abstract, final or empty. 133
 Error javadoc JavadocStyle First sentence should end with a period. 137
 Error javadoc JavadocMethod Expected an @return tag. 141
 Error design DesignForExtension Method 'createItem' is not designed for extension - needs to be abstract, final or empty. 141
 Error javadoc JavadocStyle First sentence should end with a period. 145
 Error javadoc JavadocMethod Expected an @return tag. 150
 Error design DesignForExtension Method 'createConfiguration' is not designed for extension - needs to be abstract, final or empty. 150
 Error javadoc JavadocMethod Expected @param tag for 'value'. 151

org/universAAL/tools/ucc/configuration/model/configurationdefinition/OnConfigurationModelChangedListener.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error design DesignForExtension Method 'getClazz' is not designed for extension - needs to be abstract, final or empty. 54
 Error design DesignForExtension Method 'setClazz' is not designed for extension - needs to be abstract, final or empty. 65

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Option.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error design DesignForExtension Method 'getValue' is not designed for extension - needs to be abstract, final or empty. 51
 Error design DesignForExtension Method 'setValue' is not designed for extension - needs to be abstract, final or empty. 62
 Error javadoc JavadocMethod Expected an @return tag. 70
 Error design DesignForExtension Method 'getKey' is not designed for extension - needs to be abstract, final or empty. 70
 Error design DesignForExtension Method 'setKey' is not designed for extension - needs to be abstract, final or empty. 78
 Error javadoc JavadocMethod Expected @param tag for 'value'. 78
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 82

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Options.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocMethod Expected an @return tag. 68
 Error design DesignForExtension Method 'getOption' is not designed for extension - needs to be abstract, final or empty. 68

org/universAAL/tools/ucc/configuration/model/configurationdefinition/SPARQLConfigItem.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error design DesignForExtension Method 'getQuery' is not designed for extension - needs to be abstract, final or empty. 50
 Error design DesignForExtension Method 'setQuery' is not designed for extension - needs to be abstract, final or empty. 61

org/universAAL/tools/ucc/configuration/model/configurationdefinition/SimpleConfigItem.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error design DesignForExtension Method 'getDefaultValue' is not designed for extension - needs to be abstract, final or empty. 58
 Error design DesignForExtension Method 'setDefaultValue' is not designed for extension - needs to be abstract, final or empty. 69
 Error design DesignForExtension Method 'getType' is not designed for extension - needs to be abstract, final or empty. 79
 Error design DesignForExtension Method 'setType' is not designed for extension - needs to be abstract, final or empty. 90

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Validator.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 125). 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc JavadocMethod Expected an @return tag. 76
 Error design DesignForExtension Method 'getAttribute' is not designed for extension - needs to be abstract, final or empty. 76
 Error design DesignForExtension Method 'getClazz' is not designed for extension - needs to be abstract, final or empty. 89
 Error design DesignForExtension Method 'setClazz' is not designed for extension - needs to be abstract, final or empty. 100

org/universAAL/tools/ucc/configuration/model/configurationdefinition/Validators.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocMethod Expected an @return tag. 69
 Error design DesignForExtension Method 'getValidator' is not designed for extension - needs to be abstract, final or empty. 69

org/universAAL/tools/ucc/configuration/model/configurationdefinition/package-info.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 144). 8
 Error javadoc JavadocStyle Missing a Javadoc comment. 9

org/universAAL/tools/ucc/configuration/model/configurationinstances/ConfigOption.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 124). 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocMethod Expected an @return tag. 77
 Error design DesignForExtension Method 'getValue' is not designed for extension - needs to be abstract, final or empty. 77
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 90
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 101

org/universAAL/tools/ucc/configuration/model/configurationinstances/ConfigurationInstance.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 138). 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error javadoc JavadocMethod Expected an @return tag. 96
 Error design DesignForExtension Method 'getConfigOption' is not designed for extension - needs to be abstract, final or empty. 96
 Error design DesignForExtension Method 'getId' is not designed for extension - needs to be abstract, final or empty. 109
 Error design DesignForExtension Method 'setId' is not designed for extension - needs to be abstract, final or empty. 120
 Error design DesignForExtension Method 'getUsecaseid' is not designed for extension - needs to be abstract, final or empty. 130
 Error design DesignForExtension Method 'setUsecaseid' is not designed for extension - needs to be abstract, final or empty. 141
 Error design DesignForExtension Method 'getVersion' is not designed for extension - needs to be abstract, final or empty. 151
 Error design DesignForExtension Method 'setVersion' is not designed for extension - needs to be abstract, final or empty. 162
 Error design DesignForExtension Method 'getAuthor' is not designed for extension - needs to be abstract, final or empty. 172
 Error design DesignForExtension Method 'setAuthor' is not designed for extension - needs to be abstract, final or empty. 183
 Error design DesignForExtension Method 'isActive' is not designed for extension - needs to be abstract, final or empty. 193
 Error design DesignForExtension Method 'setActive' is not designed for extension - needs to be abstract, final or empty. 204
 Error design DesignForExtension Method 'isIsPrimary' is not designed for extension - needs to be abstract, final or empty. 214
 Error design DesignForExtension Method 'setIsPrimary' is not designed for extension - needs to be abstract, final or empty. 225
 Error design DesignForExtension Method 'isIsSecondary' is not designed for extension - needs to be abstract, final or empty. 235
 Error design DesignForExtension Method 'setIsSecondary' is not designed for extension - needs to be abstract, final or empty. 246
 Error design DesignForExtension Method 'toString' is not designed for extension - needs to be abstract, final or empty. 250

org/universAAL/tools/ucc/configuration/model/configurationinstances/ObjectFactory.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Info modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 30
 Warning naming ConstantName Name '_Configuration_QNAME' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 30
 Error javadoc JavadocStyle First sentence should end with a period. 33
 Error javadoc JavadocStyle First sentence should end with a period. 42
 Error javadoc JavadocMethod Expected an @return tag. 46
 Error design DesignForExtension Method 'createConfigOption' is not designed for extension - needs to be abstract, final or empty. 46
 Error javadoc JavadocStyle First sentence should end with a period. 50
 Error javadoc JavadocMethod Expected an @return tag. 54
 Error design DesignForExtension Method 'createValue' is not designed for extension - needs to be abstract, final or empty. 54
 Error javadoc JavadocStyle First sentence should end with a period. 58
 Error javadoc JavadocMethod Expected an @return tag. 62
 Error design DesignForExtension Method 'createConfigurationInstance' is not designed for extension - needs to be abstract, final or empty. 62
 Error javadoc JavadocStyle First sentence should end with a period. 66
 Error javadoc JavadocMethod Expected an @return tag. 71
 Error design DesignForExtension Method 'createConfiguration' is not designed for extension - needs to be abstract, final or empty. 71
 Error javadoc JavadocMethod Expected @param tag for 'value'. 72

org/universAAL/tools/ucc/configuration/model/configurationinstances/Value.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error design DesignForExtension Method 'getValue' is not designed for extension - needs to be abstract, final or empty. 51
 Error design DesignForExtension Method 'setValue' is not designed for extension - needs to be abstract, final or empty. 62
 Error design DesignForExtension Method 'getKey' is not designed for extension - needs to be abstract, final or empty. 72
 Error design DesignForExtension Method 'setKey' is not designed for extension - needs to be abstract, final or empty. 83

org/universAAL/tools/ucc/configuration/model/configurationinstances/package-info.java

Severity Category Rule Message Line
 Info sizes LineLength Line is longer than 120 characters (found 123). 2
 Info sizes LineLength Line is longer than 120 characters (found 156). 8
 Error javadoc JavadocStyle Missing a Javadoc comment. 9

org/universAAL/tools/ucc/configuration/model/exceptions/ValidationException.java

Severity Category Rule Message Line
 Warning javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocMethod Missing a Javadoc comment. 15

org/universAAL/tools/ucc/configuration/model/interfaces/ConfigurationValidator.java

Severity Category Rule Message Line
 Warning javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocStyle First sentence should end with a period. 7
 Error javadoc JavadocMethod Expected @param tag for 'registry'. 23
 Error javadoc JavadocMethod Expected @param tag for 'value'. 23
 Error javadoc JavadocMethod Expected @param tag for 'registry'. 32
 Error javadoc JavadocMethod Expected @param tag for 'value'. 32
 Error javadoc JavadocMethod Expected @throws tag for 'ValidationException'. 32
 Error javadoc JavadocMethod Expected @param tag for 'attributes'. 40

org/universAAL/tools/ucc/configuration/model/interfaces/ConfigurationValidatorFactory.java

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

org/universAAL/tools/ucc/configuration/model/interfaces/ModelRegistryChangedListener.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Missing a Javadoc comment. 12

org/universAAL/tools/ucc/configuration/model/interfaces/OnConfigurationChangedListener.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 6

org/universAAL/tools/ucc/configuration/model/interfaces/OnConfigurationChangedListenerFactory.java

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

org/universAAL/tools/ucc/configuration/model/servicetracker/ListenerServiceTracker.java

Severity Category Rule Message Line
 Warning javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error design VisibilityModifier Variable 'context' must be private and have accessor methods. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error design VisibilityModifier Variable 'option' must be private and have accessor methods. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error design VisibilityModifier Variable 'listener' must be private and have accessor methods. 17
 Error javadoc JavadocMethod Missing a Javadoc comment. 19
 Error design DesignForExtension Method 'addingService' is not designed for extension - needs to be abstract, final or empty. 28
 Error design DesignForExtension Method 'removedService' is not designed for extension - needs to be abstract, final or empty. 56

org/universAAL/tools/ucc/configuration/model/servicetracker/ValidationServiceTracker.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 13
 Error javadoc JavadocVariable Missing a Javadoc comment. 15
 Error design VisibilityModifier Variable 'context' must be private and have accessor methods. 15
 Error javadoc JavadocVariable Missing a Javadoc comment. 16
 Error design VisibilityModifier Variable 'option' must be private and have accessor methods. 16
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error design VisibilityModifier Variable 'validator' must be private and have accessor methods. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error design VisibilityModifier Variable 'attributes' must be private and have accessor methods. 18
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error design DesignForExtension Method 'addingService' is not designed for extension - needs to be abstract, final or empty. 31
 Error design DesignForExtension Method 'removedService' is not designed for extension - needs to be abstract, final or empty. 62

org/universAAL/tools/ucc/configuration/model/validators/DoubleMinMaxValidator.java

Severity Category Rule Message Line
 Warning javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error design VisibilityModifier Variable 'min' must be private and have accessor methods. 12
 Error design VisibilityModifier Variable 'max' must be private and have accessor methods. 12
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error design DesignForExtension Method 'validate' is not designed for extension - needs to be abstract, final or empty. 25
 Error javadoc JavadocMethod Missing a Javadoc comment. 25
 Error design DesignForExtension Method 'setAttributes' is not designed for extension - needs to be abstract, final or empty. 42
 Error javadoc JavadocMethod Missing a Javadoc comment. 42

org/universAAL/tools/ucc/configuration/model/validators/DoubleValidator.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 17
 Error design VisibilityModifier Variable 'msg' must be private and have accessor methods. 17
 Error javadoc JavadocMethod Missing a Javadoc comment. 19
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 23
 Error javadoc JavadocMethod Missing a Javadoc comment. 23
 Error design DesignForExtension Method 'validate' is not designed for extension - needs to be abstract, final or empty. 36
 Error javadoc JavadocMethod Missing a Javadoc comment. 36
 Error javadoc JavadocMethod Missing a Javadoc comment. 42

org/universAAL/tools/ucc/configuration/model/validators/IntMinMaxValidator.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 10
 Error javadoc JavadocVariable Missing a Javadoc comment. 12
 Error design VisibilityModifier Variable 'min' must be private and have accessor methods. 12
 Error design VisibilityModifier Variable 'max' must be private and have accessor methods. 12
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 14
 Error javadoc JavadocMethod Missing a Javadoc comment. 14
 Error design DesignForExtension Method 'validate' is not designed for extension - needs to be abstract, final or empty. 28
 Error javadoc JavadocMethod Missing a Javadoc comment. 28
 Error design DesignForExtension Method 'setAttributes' is not designed for extension - needs to be abstract, final or empty. 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 45

org/universAAL/tools/ucc/configuration/model/validators/IntegerValidator.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 18
 Error design VisibilityModifier Variable 'msg' must be private and have accessor methods. 18
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 24
 Error javadoc JavadocMethod Missing a Javadoc comment. 24
 Error design DesignForExtension Method 'validate' is not designed for extension - needs to be abstract, final or empty. 37
 Error javadoc JavadocMethod Missing a Javadoc comment. 37
 Error javadoc JavadocMethod Missing a Javadoc comment. 43

org/universAAL/tools/ucc/configuration/model/validators/RegExpValidator.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 21
 Error design VisibilityModifier Variable 'attributes' must be private and have accessor methods. 21
 Error javadoc JavadocVariable Missing a Javadoc comment. 22
 Error design VisibilityModifier Variable 'regExp' must be private and have accessor methods. 22
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 24
 Error javadoc JavadocMethod Missing a Javadoc comment. 24
 Error design DesignForExtension Method 'validate' is not designed for extension - needs to be abstract, final or empty. 35
 Error javadoc JavadocMethod Missing a Javadoc comment. 35
 Error design DesignForExtension Method 'setAttributes' is not designed for extension - needs to be abstract, final or empty. 41
 Error javadoc JavadocMethod Missing a Javadoc comment. 41

org/universAAL/tools/ucc/configuration/model/validators/URLValidator.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 15
 Error javadoc JavadocMethod Missing a Javadoc comment. 17
 Error design DesignForExtension Method 'isValid' is not designed for extension - needs to be abstract, final or empty. 20
 Error javadoc JavadocMethod Missing a Javadoc comment. 20
 Error design DesignForExtension Method 'validate' is not designed for extension - needs to be abstract, final or empty. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 53