Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
29 0 0 1293

Files

File  I  W  E
application.properties 0 0 1
cz/zcu/mre/qbuilder/QBuilderApplication.java 0 0 4
cz/zcu/mre/qbuilder/config/QBuilderApplicationConfig.java 0 0 47
cz/zcu/mre/qbuilder/config/QBuilderSecurityConfig.java 0 0 26
cz/zcu/mre/qbuilder/config/QBuilderWebAppInitializer.java 0 0 19
cz/zcu/mre/qbuilder/config/QBuilderWebMvcConfig.java 0 0 48
cz/zcu/mre/qbuilder/controller/LoggingController.java 0 0 7
cz/zcu/mre/qbuilder/controller/QBuilderController.java 0 0 182
cz/zcu/mre/qbuilder/controller/QBuilderRestController.java 0 0 16
cz/zcu/mre/qbuilder/core/QBuilder.java 0 0 5
cz/zcu/mre/qbuilder/core/QBuilderImpl.java 0 0 197
cz/zcu/mre/qbuilder/helper/OntologyHelper.java 0 0 52
cz/zcu/mre/qbuilder/model/ActiveForm.java 0 0 21
cz/zcu/mre/qbuilder/model/Condition.java 0 0 129
cz/zcu/mre/qbuilder/model/Endpoint.java 0 0 36
cz/zcu/mre/qbuilder/model/MessageSourceHolder.java 0 0 11
cz/zcu/mre/qbuilder/model/Operator.java 0 0 12
cz/zcu/mre/qbuilder/model/Options.java 0 0 28
cz/zcu/mre/qbuilder/model/OrderBy.java 0 0 80
cz/zcu/mre/qbuilder/model/OutputFormat.java 0 0 17
cz/zcu/mre/qbuilder/model/Property.java 0 0 16
cz/zcu/mre/qbuilder/model/QueryData.java 0 0 138
cz/zcu/mre/qbuilder/model/RootNode.java 0 0 30
cz/zcu/mre/qbuilder/model/Timepoint.java 0 0 19
cz/zcu/mre/qbuilder/model/Type.java 0 0 13
cz/zcu/mre/qbuilder/model/TypeConversion.java 0 0 13
cz/zcu/mre/qbuilder/model/Value.java 0 0 26
cz/zcu/mre/qbuilder/model/Variable.java 0 0 100

Rules

Category Rule Violations Severity
blocks EmptyBlock 4  Error
RightCurly 11  Error
coding HiddenField 70  Error
MagicNumber 53  Error
MissingSwitchDefault 1  Error
design DesignForExtension 168  Error
HideUtilityClassConstructor 1  Error
VisibilityModifier 14  Error
imports UnusedImports
  • processJavadoc: "false"
6  Error
javadoc JavadocMethod 1  Error
JavadocPackage 6  Error
JavadocStyle 2  Error
JavadocVariable 94  Error
MissingJavadocMethod 200  Error
misc FinalParameters 198  Error
NewlineAtEndOfFile 1  Error
modifier ModifierOrder 4  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
95  Error
sizes LineLength
  • fileExtensions: "java"
353  Error
MethodLength 1  Error
ParameterNumber 1  Error
whitespace FileTabCharacter 7  Error
ParenPad 1  Error
WhitespaceAround 1  Error

Details

application.properties

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1

cz/zcu/mre/qbuilder/QBuilderApplication.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20

cz/zcu/mre/qbuilder/config/QBuilderApplicationConfig.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error sizes LineLength Line is longer than 80 characters (found 94). 73
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 78
 Error sizes LineLength Line is longer than 80 characters (found 88). 84
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 84
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 89
 Error sizes LineLength Line is longer than 80 characters (found 82). 95
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 95
 Error sizes LineLength Line is longer than 80 characters (found 93). 96
 Error javadoc JavadocVariable Missing a Javadoc comment. 96
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 98
 Error sizes LineLength Line is longer than 80 characters (found 95). 99
 Error sizes LineLength Line is longer than 80 characters (found 94). 103
 Error javadoc JavadocVariable Missing a Javadoc comment. 109
 Error javadoc JavadocVariable Missing a Javadoc comment. 111
 Error javadoc JavadocVariable Missing a Javadoc comment. 113
 Error javadoc JavadocVariable Missing a Javadoc comment. 114
 Error javadoc JavadocVariable Missing a Javadoc comment. 115
 Error javadoc JavadocVariable Missing a Javadoc comment. 117
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'queryBuilder' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'queryBuilder' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 119
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'sparqlRepository' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'sparqlRepository' static/final/abstract/empty, or adding allowed annotation for the method. 131
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 131
 Error sizes LineLength Line is longer than 80 characters (found 103). 136
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'dataService' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'dataService' static/final/abstract/empty, or adding allowed annotation for the method. 144
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 144
 Error sizes LineLength Line is longer than 80 characters (found 107). 149
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'sparqlBuilder' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'sparqlBuilder' static/final/abstract/empty, or adding allowed annotation for the method. 156
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 156
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'ontologyRepository' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'ontologyRepository' static/final/abstract/empty, or adding allowed annotation for the method. 168
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 168
 Error sizes LineLength Line is longer than 80 characters (found 97). 175
 Error sizes LineLength Line is longer than 80 characters (found 91). 176
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'ontologyService' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'ontologyService' static/final/abstract/empty, or adding allowed annotation for the method. 182
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 182
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'labelService' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'labelService' static/final/abstract/empty, or adding allowed annotation for the method. 187
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 187
 Error design DesignForExtension Class 'QBuilderApplicationConfig' looks like designed for extension (can be subclassed), but the method 'vocabularyService' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderApplicationConfig' final or making the method 'vocabularyService' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 192
 Error sizes LineLength Line is longer than 80 characters (found 89). 212
 Error sizes LineLength Line is longer than 80 characters (found 108). 213
 Error sizes LineLength Line is longer than 80 characters (found 82). 215
 Error sizes LineLength Line is longer than 80 characters (found 97). 219

cz/zcu/mre/qbuilder/config/QBuilderSecurityConfig.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 92). 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error design DesignForExtension Class 'QBuilderSecurityConfig' looks like designed for extension (can be subclassed), but the method 'accountService' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderSecurityConfig' final or making the method 'accountService' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error sizes LineLength Line is longer than 80 characters (found 84). 58
 Error sizes LineLength Line is longer than 80 characters (found 87). 67
 Error sizes LineLength Line is longer than 80 characters (found 84). 77
 Error design DesignForExtension Class 'QBuilderSecurityConfig' looks like designed for extension (can be subclassed), but the method 'configure' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderSecurityConfig' final or making the method 'configure' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error misc FinalParameters Parameter http should be final. 83
 Error sizes LineLength Line is longer than 80 characters (found 115). 91
 Error sizes LineLength Line is longer than 80 characters (found 133). 92
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 92
 Error sizes LineLength Line is longer than 80 characters (found 92). 94
 Error sizes LineLength Line is longer than 80 characters (found 105). 96
 Error sizes LineLength Line is longer than 80 characters (found 84). 97
 Error sizes LineLength Line is longer than 80 characters (found 116). 101
 Error sizes LineLength Line is longer than 80 characters (found 84). 102
 Error sizes LineLength Line is longer than 80 characters (found 174). 106
 Error sizes LineLength Line is longer than 80 characters (found 147). 107
 Error sizes LineLength Line is longer than 80 characters (found 133). 108
 Error sizes LineLength Line is longer than 80 characters (found 101). 126
 Error sizes LineLength Line is longer than 80 characters (found 81). 135

cz/zcu/mre/qbuilder/config/QBuilderWebAppInitializer.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error coding MagicNumber '111' is a magic number. 40
 Error sizes LineLength Line is longer than 80 characters (found 138). 41
 Error sizes LineLength Line is longer than 80 characters (found 95). 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error sizes LineLength Line is longer than 80 characters (found 82). 46
 Error misc FinalParameters Parameter servletContext should be final. 46
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error design DesignForExtension Class 'QBuilderWebAppInitializer' looks like designed for extension (can be subclassed), but the method 'getServletMappings' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderWebAppInitializer' final or making the method 'getServletMappings' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error design DesignForExtension Class 'QBuilderWebAppInitializer' looks like designed for extension (can be subclassed), but the method 'getRootConfigClasses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderWebAppInitializer' final or making the method 'getRootConfigClasses' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error design DesignForExtension Class 'QBuilderWebAppInitializer' looks like designed for extension (can be subclassed), but the method 'getServletConfigClasses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderWebAppInitializer' final or making the method 'getServletConfigClasses' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error design DesignForExtension Class 'QBuilderWebAppInitializer' looks like designed for extension (can be subclassed), but the method 'getServletFilters' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderWebAppInitializer' final or making the method 'getServletFilters' static/final/abstract/empty, or adding allowed annotation for the method. 65
 Error sizes LineLength Line is longer than 80 characters (found 88). 67
 Error sizes LineLength Line is longer than 80 characters (found 109). 71
 Error design DesignForExtension Class 'QBuilderWebAppInitializer' looks like designed for extension (can be subclassed), but the method 'customizeRegistration' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderWebAppInitializer' final or making the method 'customizeRegistration' static/final/abstract/empty, or adding allowed annotation for the method. 76
 Error sizes LineLength Line is longer than 80 characters (found 84). 77
 Error misc FinalParameters Parameter registration should be final. 77

cz/zcu/mre/qbuilder/config/QBuilderWebMvcConfig.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 90). 82
 Error javadoc JavadocVariable Missing a Javadoc comment. 82
 Error javadoc JavadocVariable Missing a Javadoc comment. 85
 Error javadoc JavadocStyle First sentence should end with a period. 87
 Error javadoc JavadocStyle First sentence should end with a period. 91
 Error javadoc JavadocVariable Missing a Javadoc comment. 97
 Error design VisibilityModifier Variable 'languageService' must be private and have accessor methods. 102
 Error sizes LineLength Line is longer than 80 characters (found 220). 110
 Error misc FinalParameters Parameter mvcContentNegotiationManager should be final. 110
 Error misc FinalParameters Parameter mvcConversionService should be final. 110
 Error misc FinalParameters Parameter mvcResourceUrlProvider should be final. 110
 Error sizes LineLength Line is longer than 80 characters (found 155). 113
 Error sizes LineLength Line is longer than 80 characters (found 96). 122
 Error sizes LineLength Line is longer than 80 characters (found 89). 132
 Error sizes LineLength Line is longer than 80 characters (found 95). 138
 Error sizes LineLength Line is longer than 80 characters (found 106). 144
 Error coding MagicNumber '3600000L' is a magic number. 145
 Error sizes LineLength Line is longer than 80 characters (found 81). 147
 Error misc FinalParameters Parameter servletContext should be final. 166
 Error sizes LineLength Line is longer than 80 characters (found 82). 169
 Error misc FinalParameters Parameter registry should be final. 176
 Error sizes LineLength Line is longer than 80 characters (found 95). 179
 Error sizes LineLength Line is longer than 80 characters (found 88). 180
 Error sizes LineLength Line is longer than 80 characters (found 155). 181
 Error coding MagicNumber '604800' is a magic number. 182
 Error coding MagicNumber '604800' is a magic number. 183
 Error sizes LineLength Line is longer than 80 characters (found 108). 185
 Error sizes LineLength Line is longer than 80 characters (found 114). 186
 Error sizes LineLength Line is longer than 80 characters (found 93). 190
 Error misc FinalParameters Parameter configurer should be final. 190
 Error misc FinalParameters Parameter formatterRegistry should be final. 197
 Error sizes LineLength Line is longer than 80 characters (found 93). 224
 Error misc FinalParameters Parameter argumentResolvers should be final. 224
 Error sizes LineLength Line is longer than 80 characters (found 101). 227
 Error coding MagicNumber '10000' is a magic number. 228
 Error coding MagicNumber '40' is a magic number. 231
 Error sizes LineLength Line is longer than 80 characters (found 90). 241
 Error javadoc JavadocMethod @return tag should be present and have description. 250
 Error sizes LineLength Line is longer than 80 characters (found 106). 267
 Error sizes LineLength Line is longer than 80 characters (found 89). 275
 Error misc FinalParameters Parameter registry should be final. 282
 Error misc FinalParameters Parameter registry should be final. 288
 Error sizes LineLength Line is longer than 80 characters (found 97). 291
 Error coding MagicNumber '3600' is a magic number. 294

cz/zcu/mre/qbuilder/controller/LoggingController.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error design VisibilityModifier Variable 'logger' must be private and have accessor methods. 37
 Error design DesignForExtension Class 'LoggingController' looks like designed for extension (can be subclassed), but the method 'index' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'LoggingController' final or making the method 'index' static/final/abstract/empty, or adding allowed annotation for the method. 39
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 39

cz/zcu/mre/qbuilder/controller/QBuilderController.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error imports UnusedImports Unused import - cz.zcu.mre.qbuilder.model.Operator. 29
 Error imports UnusedImports Unused import - cz.zcu.mre.qbuilder.model.TypeConversion. 35
 Error sizes LineLength Line is longer than 80 characters (found 88). 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'updateOrderIndex' must be private and have accessor methods. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error design VisibilityModifier Variable 'updateConditionIndex' must be private and have accessor methods. 67
 Error sizes LineLength Line is longer than 80 characters (found 159). 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error design VisibilityModifier Variable 'variableEditMode' must be private and have accessor methods. 69
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 69
 Error sizes LineLength Line is longer than 80 characters (found 143). 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'conditionEditMode' must be private and have accessor methods. 70
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error javadoc JavadocVariable Missing a Javadoc comment. 73
 Error design VisibilityModifier Variable 'editedTimepoint' must be private and have accessor methods. 73
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error design VisibilityModifier Variable 'editedType' must be private and have accessor methods. 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error design VisibilityModifier Variable 'editedProperty' must be private and have accessor methods. 75
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error design VisibilityModifier Variable 'newTimepoint' must be private and have accessor methods. 78
 Error javadoc JavadocVariable Missing a Javadoc comment. 79
 Error design VisibilityModifier Variable 'newType' must be private and have accessor methods. 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 80
 Error design VisibilityModifier Variable 'newProperty' must be private and have accessor methods. 80
 Error regexp RegexpSingleline Line has trailing spaces. 81
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error javadoc JavadocVariable Missing a Javadoc comment. 83
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error javadoc JavadocVariable Missing a Javadoc comment. 89
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error design DesignForExtension Class 'QBuilderController' looks like designed for extension (can be subclassed), but the method 'index' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderController' final or making the method 'index' static/final/abstract/empty, or adding allowed annotation for the method. 95
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 95
 Error misc FinalParameters Parameter model should be final. 96
 Error design DesignForExtension Class 'QBuilderController' looks like designed for extension (can be subclassed), but the method 'root' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderController' final or making the method 'root' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 102
 Error misc FinalParameters Parameter model should be final. 103
 Error design DesignForExtension Class 'QBuilderController' looks like designed for extension (can be subclassed), but the method 'queryDataUpdate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderController' final or making the method 'queryDataUpdate' static/final/abstract/empty, or adding allowed annotation for the method. 111
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 111
 Error sizes ParameterNumber More than 7 parameters (found 11). 112
 Error sizes LineLength Line is longer than 80 characters (found 91). 113
 Error misc FinalParameters Parameter request should be final. 113
 Error misc FinalParameters Parameter model should be final. 113
 Error misc FinalParameters Parameter redirectAttributes should be final. 113
 Error misc FinalParameters Parameter qData should be final. 114
 Error misc FinalParameters Parameter variable should be final. 115
 Error misc FinalParameters Parameter order should be final. 116
 Error misc FinalParameters Parameter condition should be final. 117
 Error misc FinalParameters Parameter langString should be final. 118
 Error sizes LineLength Line is longer than 80 characters (found 95). 119
 Error misc FinalParameters Parameter action should be final. 119
 Error sizes LineLength Line is longer than 80 characters (found 97). 120
 Error misc FinalParameters Parameter action2 should be final. 120
 Error sizes LineLength Line is longer than 80 characters (found 99). 121
 Error misc FinalParameters Parameter action3 should be final. 121
 Error sizes LineLength Line is longer than 80 characters (found 85). 146
 Error sizes LineLength Line is longer than 80 characters (found 81). 153
 Error sizes LineLength Line is longer than 80 characters (found 125). 157
 Error sizes LineLength Line is longer than 80 characters (found 83). 159
 Error sizes LineLength Line is longer than 80 characters (found 84). 172
 Error sizes LineLength Line is longer than 80 characters (found 122). 175
 Error misc FinalParameters Parameter action should be final. 175
 Error misc FinalParameters Parameter request should be final. 175
 Error misc FinalParameters Parameter variable should be final. 175
 Error misc FinalParameters Parameter qData should be final. 175
 Error regexp RegexpSingleline Line has trailing spaces. 189
 Error regexp RegexpSingleline Line has trailing spaces. 191
 Error sizes LineLength Line is longer than 80 characters (found 107). 195
 Error regexp RegexpSingleline Line has trailing spaces. 197
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 200
 Error regexp RegexpSingleline Line has trailing spaces. 201
 Error regexp RegexpSingleline Line has trailing spaces. 204
 Error regexp RegexpSingleline Line has trailing spaces. 205
 Error regexp RegexpSingleline Line has trailing spaces. 206
 Error sizes LineLength Line is longer than 80 characters (found 100). 207
 Error sizes LineLength Line is longer than 80 characters (found 125). 208
 Error sizes LineLength Line is longer than 80 characters (found 107). 209
 Error regexp RegexpSingleline Line has trailing spaces. 210
 Error sizes LineLength Line is longer than 80 characters (found 182). 212
 Error regexp RegexpSingleline Line has trailing spaces. 217
 Error sizes LineLength Line is longer than 80 characters (found 177). 219
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 224
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 225
 Error sizes LineLength Line is longer than 80 characters (found 116). 226
 Error regexp RegexpSingleline Line has trailing spaces. 229
 Error sizes LineLength Line is longer than 80 characters (found 200). 229
 Error regexp RegexpSingleline Line has trailing spaces. 230
 Error sizes LineLength Line is longer than 80 characters (found 144). 230
 Error regexp RegexpSingleline Line has trailing spaces. 232
 Error regexp RegexpSingleline Line has trailing spaces. 233
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error sizes LineLength Line is longer than 80 characters (found 200). 235
 Error sizes LineLength Line is longer than 80 characters (found 99). 236
 Error regexp RegexpSingleline Line has trailing spaces. 240
 Error regexp RegexpSingleline Line has trailing spaces. 244
 Error regexp RegexpSingleline Line has trailing spaces. 248
 Error regexp RegexpSingleline Line has trailing spaces. 253
 Error regexp RegexpSingleline Line has trailing spaces. 255
 Error regexp RegexpSingleline Line has trailing spaces. 260
 Error sizes LineLength Line is longer than 80 characters (found 93). 261
 Error sizes LineLength Line is longer than 80 characters (found 83). 262
 Error sizes LineLength Line is longer than 80 characters (found 91). 263
 Error regexp RegexpSingleline Line has trailing spaces. 264
 Error regexp RegexpSingleline Line has trailing spaces. 267
 Error regexp RegexpSingleline Line has trailing spaces. 273
 Error regexp RegexpSingleline Line has trailing spaces. 275
 Error sizes LineLength Line is longer than 80 characters (found 107). 281
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 281
 Error sizes LineLength Line is longer than 80 characters (found 101). 282
 Error regexp RegexpSingleline Line has trailing spaces. 283
 Error sizes LineLength Line is longer than 80 characters (found 145). 287
 Error sizes LineLength Line is longer than 80 characters (found 176). 289
 Error sizes LineLength Line is longer than 80 characters (found 172). 296
 Error whitespace ParenPad ')' is preceded with whitespace. 296
 Error sizes LineLength Line is longer than 80 characters (found 117). 323
 Error misc FinalParameters Parameter action should be final. 323
 Error misc FinalParameters Parameter request should be final. 323
 Error misc FinalParameters Parameter order should be final. 323
 Error misc FinalParameters Parameter qData should be final. 323
 Error sizes LineLength Line is longer than 80 characters (found 125). 386
 Error misc FinalParameters Parameter action should be final. 386
 Error misc FinalParameters Parameter request should be final. 386
 Error misc FinalParameters Parameter condition should be final. 386
 Error misc FinalParameters Parameter qData should be final. 386
 Error regexp RegexpSingleline Line has trailing spaces. 416
 Error sizes LineLength Line is longer than 80 characters (found 107). 458
 Error misc FinalParameters Parameter variableIndex should be final. 458
 Error misc FinalParameters Parameter moveUp should be final. 458
 Error misc FinalParameters Parameter qData should be final. 458
 Error sizes LineLength Line is longer than 80 characters (found 107). 471
 Error misc FinalParameters Parameter orderingIndex should be final. 471
 Error misc FinalParameters Parameter moveUp should be final. 471
 Error misc FinalParameters Parameter qData should be final. 471
 Error sizes LineLength Line is longer than 80 characters (found 109). 484
 Error misc FinalParameters Parameter conditionIndex should be final. 484
 Error misc FinalParameters Parameter moveUp should be final. 484
 Error misc FinalParameters Parameter qData should be final. 484
 Error sizes LineLength Line is longer than 80 characters (found 122). 497
 Error misc FinalParameters Parameter action should be final. 497
 Error misc FinalParameters Parameter queryData should be final. 497
 Error misc FinalParameters Parameter redirectAttributes should be final. 497
 Error coding MissingSwitchDefault switch without "default" clause. 499
 Error sizes LineLength Line is longer than 80 characters (found 123). 518
 Error misc FinalParameters Parameter model should be final. 518
 Error misc FinalParameters Parameter queryData should be final. 518
 Error misc FinalParameters Parameter variable should be final. 518
 Error misc FinalParameters Parameter order should be final. 518
 Error misc FinalParameters Parameter condition should be final. 518
 Error sizes LineLength Line is longer than 80 characters (found 96). 529
 Error sizes LineLength Line is longer than 80 characters (found 110). 533
 Error sizes LineLength Line is longer than 80 characters (found 115). 535
 Error sizes LineLength Line is longer than 80 characters (found 151). 537
 Error sizes LineLength Line is longer than 80 characters (found 118). 538
 Error sizes LineLength Line is longer than 80 characters (found 104). 541
 Error sizes LineLength Line is longer than 80 characters (found 145). 544
 Error misc FinalParameters Parameter model should be final. 544
 Error misc FinalParameters Parameter queryData should be final. 544
 Error misc FinalParameters Parameter variable should be final. 544
 Error misc FinalParameters Parameter order should be final. 544
 Error misc FinalParameters Parameter condition should be final. 544
 Error misc FinalParameters Parameter language should be final. 544
 Error blocks EmptyBlock Must have at least one statement. 565
 Error blocks EmptyBlock Must have at least one statement. 575
 Error blocks EmptyBlock Must have at least one statement. 586
 Error blocks EmptyBlock Must have at least one statement. 604
 Error sizes LineLength Line is longer than 80 characters (found 151). 610
 Error regexp RegexpSingleline Line has trailing spaces. 612
 Error sizes LineLength Line is longer than 80 characters (found 83). 618
 Error regexp RegexpSingleline Line has trailing spaces. 621

cz/zcu/mre/qbuilder/controller/QBuilderRestController.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 92). 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error sizes LineLength Line is longer than 80 characters (found 109). 46
 Error design DesignForExtension Class 'QBuilderRestController' looks like designed for extension (can be subclassed), but the method 'queryExport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderRestController' final or making the method 'queryExport' static/final/abstract/empty, or adding allowed annotation for the method. 46
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 46
 Error sizes LineLength Line is longer than 80 characters (found 81). 49
 Error misc FinalParameters Parameter model should be final. 49
 Error misc FinalParameters Parameter queryData should be final. 49
 Error sizes LineLength Line is longer than 80 characters (found 109). 56
 Error design DesignForExtension Class 'QBuilderRestController' looks like designed for extension (can be subclassed), but the method 'queryImport' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderRestController' final or making the method 'queryImport' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error misc FinalParameters Parameter model should be final. 57
 Error misc FinalParameters Parameter queryData should be final. 57

cz/zcu/mre/qbuilder/core/QBuilder.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 32

cz/zcu/mre/qbuilder/core/QBuilderImpl.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 82). 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error sizes LineLength Line is longer than 80 characters (found 84). 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error sizes LineLength Line is longer than 80 characters (found 86). 58
 Error misc FinalParameters Parameter sb should be final. 58
 Error misc FinalParameters Parameter optional should be final. 58
 Error misc FinalParameters Parameter triple should be final. 58
 Error misc FinalParameters Parameter node should be final. 89
 Error javadoc JavadocVariable Missing a Javadoc comment. 106
 Error javadoc JavadocVariable Missing a Javadoc comment. 109
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 112
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 115
 Error misc FinalParameters Parameter ontologyRepository should be final. 115
 Error coding HiddenField 'ontologyRepository' hides a field. 115
 Error design DesignForExtension Class 'QBuilderImpl' looks like designed for extension (can be subclassed), but the method 'getOntologyRepository' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderImpl' final or making the method 'getOntologyRepository' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 119
 Error design DesignForExtension Class 'QBuilderImpl' looks like designed for extension (can be subclassed), but the method 'setOntologyRepository' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderImpl' final or making the method 'setOntologyRepository' static/final/abstract/empty, or adding allowed annotation for the method. 123
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 123
 Error misc FinalParameters Parameter ontologyRepository should be final. 123
 Error coding HiddenField 'ontologyRepository' hides a field. 123
 Error design DesignForExtension Class 'QBuilderImpl' looks like designed for extension (can be subclassed), but the method 'getOntologyHelper' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderImpl' final or making the method 'getOntologyHelper' static/final/abstract/empty, or adding allowed annotation for the method. 127
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 127
 Error design DesignForExtension Class 'QBuilderImpl' looks like designed for extension (can be subclassed), but the method 'setOntologyHelper' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderImpl' final or making the method 'setOntologyHelper' static/final/abstract/empty, or adding allowed annotation for the method. 131
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 131
 Error misc FinalParameters Parameter ontologyHelper should be final. 131
 Error coding HiddenField 'ontologyHelper' hides a field. 131
 Error design DesignForExtension Class 'QBuilderImpl' looks like designed for extension (can be subclassed), but the method 'buildSelect' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QBuilderImpl' final or making the method 'buildSelect' static/final/abstract/empty, or adding allowed annotation for the method. 135
 Error misc FinalParameters Parameter data should be final. 136
 Error misc FinalParameters Parameter variables should be final. 169
 Error misc FinalParameters Parameter variables should be final. 190
 Error sizes LineLength Line is longer than 80 characters (found 81). 209
 Error sizes LineLength Line is longer than 80 characters (found 88). 214
 Error sizes LineLength Line is longer than 80 characters (found 120). 218
 Error sizes LineLength Line is longer than 80 characters (found 107). 222
 Error sizes LineLength Line is longer than 80 characters (found 104). 237
 Error sizes LineLength Line is longer than 80 characters (found 103). 238
 Error sizes LineLength Line is longer than 80 characters (found 85). 242
 Error sizes LineLength Line is longer than 80 characters (found 94). 243
 Error sizes LineLength Line is longer than 80 characters (found 98). 244
 Error sizes LineLength Line is longer than 80 characters (found 111). 249
 Error sizes LineLength Line is longer than 80 characters (found 100). 259
 Error misc FinalParameters Parameter operatorName should be final. 279
 Error misc FinalParameters Parameter conversionEnumName should be final. 315
 Error misc FinalParameters Parameter valueString should be final. 352
 Error sizes MethodLength Method buildFilter length is 388 lines (max allowed is 150). 363
 Error misc FinalParameters Parameter conditions should be final. 363
 Error regexp RegexpSingleline Line has trailing spaces. 366
 Error regexp RegexpSingleline Line has trailing spaces. 384
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 384
 Error sizes LineLength Line is longer than 80 characters (found 82). 386
 Error regexp RegexpSingleline Line has trailing spaces. 391
 Error sizes LineLength Line is longer than 80 characters (found 92). 392
 Error regexp RegexpSingleline Line has trailing spaces. 393
 Error sizes LineLength Line is longer than 80 characters (found 94). 394
 Error regexp RegexpSingleline Line has trailing spaces. 395
 Error regexp RegexpSingleline Line has trailing spaces. 396
 Error regexp RegexpSingleline Line has trailing spaces. 404
 Error sizes LineLength Line is longer than 80 characters (found 123). 406
 Error regexp RegexpSingleline Line has trailing spaces. 409
 Error sizes LineLength Line is longer than 80 characters (found 143). 411
 Error sizes LineLength Line is longer than 80 characters (found 92). 414
 Error regexp RegexpSingleline Line has trailing spaces. 416
 Error sizes LineLength Line is longer than 80 characters (found 216). 419
 Error sizes LineLength Line is longer than 80 characters (found 230). 421
 Error regexp RegexpSingleline Line has trailing spaces. 427
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 427
 Error sizes LineLength Line is longer than 80 characters (found 146). 429
 Error regexp RegexpSingleline Line has trailing spaces. 430
 Error sizes LineLength Line is longer than 80 characters (found 92). 432
 Error regexp RegexpSingleline Line has trailing spaces. 435
 Error sizes LineLength Line is longer than 80 characters (found 214). 437
 Error sizes LineLength Line is longer than 80 characters (found 228). 439
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 445
 Error sizes LineLength Line is longer than 80 characters (found 150). 447
 Error sizes LineLength Line is longer than 80 characters (found 92). 450
 Error sizes LineLength Line is longer than 80 characters (found 215). 455
 Error sizes LineLength Line is longer than 80 characters (found 229). 457
 Error regexp RegexpSingleline Line has trailing spaces. 463
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 463
 Error sizes LineLength Line is longer than 80 characters (found 147). 465
 Error sizes LineLength Line is longer than 80 characters (found 92). 468
 Error sizes LineLength Line is longer than 80 characters (found 200). 473
 Error sizes LineLength Line is longer than 80 characters (found 207). 475
 Error regexp RegexpSingleline Line has trailing spaces. 481
 Error blocks RightCurly '}' at column 17 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 481
 Error sizes LineLength Line is longer than 80 characters (found 81). 485
 Error sizes LineLength Line is longer than 80 characters (found 104). 489
 Error sizes LineLength Line is longer than 80 characters (found 92). 494
 Error regexp RegexpSingleline Line has trailing spaces. 496
 Error sizes LineLength Line is longer than 80 characters (found 123). 498
 Error sizes LineLength Line is longer than 80 characters (found 123). 502
 Error regexp RegexpSingleline Line has trailing spaces. 506
 Error regexp RegexpSingleline Line has trailing spaces. 508
 Error regexp RegexpSingleline Line has trailing spaces. 509
 Error sizes LineLength Line is longer than 80 characters (found 218). 510
 Error sizes LineLength Line is longer than 80 characters (found 218). 514
 Error regexp RegexpSingleline Line has trailing spaces. 516
 Error sizes LineLength Line is longer than 80 characters (found 142). 517
 Error sizes LineLength Line is longer than 80 characters (found 108). 519
 Error sizes LineLength Line is longer than 80 characters (found 96). 522
 Error regexp RegexpSingleline Line has trailing spaces. 523
 Error regexp RegexpSingleline Line has trailing spaces. 532
 Error sizes LineLength Line is longer than 80 characters (found 127). 534
 Error sizes LineLength Line is longer than 80 characters (found 203). 538
 Error sizes LineLength Line is longer than 80 characters (found 94). 540
 Error regexp RegexpSingleline Line has trailing spaces. 544
 Error sizes LineLength Line is longer than 80 characters (found 87). 545
 Error sizes LineLength Line is longer than 80 characters (found 136). 546
 Error sizes LineLength Line is longer than 80 characters (found 99). 548
 Error regexp RegexpSingleline Line has trailing spaces. 550
 Error regexp RegexpSingleline Line has trailing spaces. 551
 Error sizes LineLength Line is longer than 80 characters (found 272). 552
 Error sizes LineLength Line is longer than 80 characters (found 117). 554
 Error sizes LineLength Line is longer than 80 characters (found 127). 558
 Error regexp RegexpSingleline Line has trailing spaces. 562
 Error blocks RightCurly '}' at column 21 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 562
 Error sizes LineLength Line is longer than 80 characters (found 94). 564
 Error regexp RegexpSingleline Line has trailing spaces. 565
 Error sizes LineLength Line is longer than 80 characters (found 84). 567
 Error regexp RegexpSingleline Line has trailing spaces. 569
 Error sizes LineLength Line is longer than 80 characters (found 89). 570
 Error sizes LineLength Line is longer than 80 characters (found 82). 571
 Error sizes LineLength Line is longer than 80 characters (found 109). 573
 Error sizes LineLength Line is longer than 80 characters (found 89). 576
 Error sizes LineLength Line is longer than 80 characters (found 106). 579
 Error regexp RegexpSingleline Line has trailing spaces. 580
 Error sizes LineLength Line is longer than 80 characters (found 102). 581
 Error sizes LineLength Line is longer than 80 characters (found 133). 587
 Error sizes LineLength Line is longer than 80 characters (found 133). 589
 Error sizes LineLength Line is longer than 80 characters (found 124). 593
 Error sizes LineLength Line is longer than 80 characters (found 124). 595
 Error sizes LineLength Line is longer than 80 characters (found 154). 598
 Error regexp RegexpSingleline Line has trailing spaces. 600
 Error blocks RightCurly '}' at column 25 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 600
 Error sizes LineLength Line is longer than 80 characters (found 89). 603
 Error sizes LineLength Line is longer than 80 characters (found 82). 604
 Error sizes LineLength Line is longer than 80 characters (found 109). 606
 Error sizes LineLength Line is longer than 80 characters (found 89). 607
 Error sizes LineLength Line is longer than 80 characters (found 89). 611
 Error sizes LineLength Line is longer than 80 characters (found 106). 614
 Error sizes LineLength Line is longer than 80 characters (found 89). 615
 Error sizes LineLength Line is longer than 80 characters (found 161). 619
 Error regexp RegexpSingleline Line has trailing spaces. 622
 Error blocks RightCurly '}' at column 21 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 622
 Error sizes LineLength Line is longer than 80 characters (found 154). 624
 Error sizes LineLength Line is longer than 80 characters (found 88). 626
 Error sizes LineLength Line is longer than 80 characters (found 99). 628
 Error regexp RegexpSingleline Line has trailing spaces. 632
 Error regexp RegexpSingleline Line has trailing spaces. 634
 Error sizes LineLength Line is longer than 80 characters (found 88). 635
 Error sizes LineLength Line is longer than 80 characters (found 88). 636
 Error sizes LineLength Line is longer than 80 characters (found 112). 638
 Error regexp RegexpSingleline Line has trailing spaces. 641
 Error sizes LineLength Line is longer than 80 characters (found 84). 643
 Error sizes LineLength Line is longer than 80 characters (found 122). 644
 Error sizes LineLength Line is longer than 80 characters (found 122). 646
 Error blocks RightCurly '}' at column 29 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 650
 Error sizes LineLength Line is longer than 80 characters (found 82). 651
 Error sizes LineLength Line is longer than 80 characters (found 92). 652
 Error sizes LineLength Line is longer than 80 characters (found 99). 656
 Error regexp RegexpSingleline Line has trailing spaces. 662
 Error blocks RightCurly '}' at column 29 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 662
 Error sizes LineLength Line is longer than 80 characters (found 82). 663
 Error sizes LineLength Line is longer than 80 characters (found 94). 664
 Error sizes LineLength Line is longer than 80 characters (found 102). 666
 Error sizes LineLength Line is longer than 80 characters (found 91). 668
 Error sizes LineLength Line is longer than 80 characters (found 92). 671
 Error sizes LineLength Line is longer than 80 characters (found 101). 675
 Error sizes LineLength Line is longer than 80 characters (found 88). 679
 Error regexp RegexpSingleline Line has trailing spaces. 687
 Error blocks RightCurly '}' at column 29 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else, do/while or try/catch/finally). 687
 Error sizes LineLength Line is longer than 80 characters (found 92). 688
 Error regexp RegexpSingleline Line has trailing spaces. 701
 Error sizes LineLength Line is longer than 80 characters (found 83). 702
 Error sizes LineLength Line is longer than 80 characters (found 124). 703
 Error sizes LineLength Line is longer than 80 characters (found 99). 705
 Error sizes LineLength Line is longer than 80 characters (found 99). 706
 Error sizes LineLength Line is longer than 80 characters (found 103). 709
 Error sizes LineLength Line is longer than 80 characters (found 103). 710
 Error regexp RegexpSingleline Line has trailing spaces. 712
 Error sizes LineLength Line is longer than 80 characters (found 138). 713
 Error sizes LineLength Line is longer than 80 characters (found 87). 714
 Error sizes LineLength Line is longer than 80 characters (found 110). 720
 Error sizes LineLength Line is longer than 80 characters (found 104). 721
 Error sizes LineLength Line is longer than 80 characters (found 106). 722
 Error sizes LineLength Line is longer than 80 characters (found 110). 724
 Error regexp RegexpSingleline Line has trailing spaces. 752
 Error misc FinalParameters Parameter options should be final. 760
 Error misc FinalParameters Parameter ordering should be final. 792
 Error sizes LineLength Line is longer than 80 characters (found 87). 817
 Error sizes LineLength Line is longer than 80 characters (found 83). 819
 Error sizes LineLength Line is longer than 80 characters (found 87). 825
 Error misc FinalParameters Parameter text should be final. 838

cz/zcu/mre/qbuilder/helper/OntologyHelper.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 84). 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 69
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'listIndividualsOfClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'listIndividualsOfClass' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 73
 Error misc FinalParameters Parameter clazz should be final. 73
 Error sizes LineLength Line is longer than 80 characters (found 104). 74
 Error sizes LineLength Line is longer than 80 characters (found 137). 79
 Error sizes LineLength Line is longer than 80 characters (found 127). 83
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'createResourceWrapper' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'createResourceWrapper' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error misc FinalParameters Parameter resource should be final. 92
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error sizes LineLength Line is longer than 80 characters (found 89). 95
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'listClasses' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'listClasses' static/final/abstract/empty, or adding allowed annotation for the method. 100
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 100
 Error misc FinalParameters Parameter timepoint should be final. 100
 Error sizes LineLength Line is longer than 80 characters (found 95). 104
 Error sizes LineLength Line is longer than 80 characters (found 87). 107
 Error sizes LineLength Line is longer than 80 characters (found 101). 109
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'listPropertiesInDomain' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'listPropertiesInDomain' static/final/abstract/empty, or adding allowed annotation for the method. 129
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 129
 Error misc FinalParameters Parameter type should be final. 129
 Error sizes LineLength Line is longer than 80 characters (found 144). 146
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'getDataType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'getDataType' static/final/abstract/empty, or adding allowed annotation for the method. 165
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 165
 Error misc FinalParameters Parameter ontPropertyRw should be final. 165
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'getResourceLabel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'getResourceLabel' static/final/abstract/empty, or adding allowed annotation for the method. 173
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 173
 Error misc FinalParameters Parameter uri should be final. 173
 Error sizes LineLength Line is longer than 80 characters (found 91). 175
 Error sizes LineLength Line is longer than 80 characters (found 134). 182
 Error sizes LineLength Line is longer than 80 characters (found 110). 186
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'listVocabularyItems' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'listVocabularyItems' static/final/abstract/empty, or adding allowed annotation for the method. 194
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 194
 Error misc FinalParameters Parameter vocabularyUri should be final. 194
 Error sizes LineLength Line is longer than 80 characters (found 81). 199
 Error sizes LineLength Line is longer than 80 characters (found 115). 202
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'variable' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'variable' static/final/abstract/empty, or adding allowed annotation for the method. 216
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 216
 Error misc FinalParameters Parameter string should be final. 216
 Error design DesignForExtension Class 'OntologyHelper' looks like designed for extension (can be subclassed), but the method 'shortName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OntologyHelper' final or making the method 'shortName' static/final/abstract/empty, or adding allowed annotation for the method. 220
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 220
 Error misc FinalParameters Parameter node should be final. 220
 Error sizes LineLength Line is longer than 80 characters (found 91). 222
 Error sizes LineLength Line is longer than 80 characters (found 101). 223

cz/zcu/mre/qbuilder/model/ActiveForm.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 11
 Error sizes LineLength Line is longer than 80 characters (found 82). 21
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error design DesignForExtension Class 'ActiveForm' looks like designed for extension (can be subclassed), but the method 'hasFormId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ActiveForm' final or making the method 'hasFormId' static/final/abstract/empty, or adding allowed annotation for the method. 33
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 Error design DesignForExtension Class 'ActiveForm' looks like designed for extension (can be subclassed), but the method 'getFormId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ActiveForm' final or making the method 'getFormId' static/final/abstract/empty, or adding allowed annotation for the method. 37
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 46
 Error misc FinalParameters Parameter formId should be final. 46
 Error coding HiddenField 'formId' hides a field. 46
 Error design DesignForExtension Class 'ActiveForm' looks like designed for extension (can be subclassed), but the method 'hasFormId2' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ActiveForm' final or making the method 'hasFormId2' static/final/abstract/empty, or adding allowed annotation for the method. 53
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 53
 Error design DesignForExtension Class 'ActiveForm' looks like designed for extension (can be subclassed), but the method 'getFormId2' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ActiveForm' final or making the method 'getFormId2' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 66
 Error misc FinalParameters Parameter formId2 should be final. 66
 Error coding HiddenField 'formId2' hides a field. 66
 Error design DesignForExtension Class 'ActiveForm' 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 'ActiveForm' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error sizes LineLength Line is longer than 80 characters (found 81). 76

cz/zcu/mre/qbuilder/model/Condition.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error imports UnusedImports Unused import - java.util.Arrays. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error misc FinalParameters Parameter root should be final. 42
 Error sizes LineLength Line is longer than 80 characters (found 131). 44
 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 JavadocVariable Missing a Javadoc comment. 63
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 82
 Error sizes LineLength Line is longer than 80 characters (found 151). 85
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 85
 Error misc FinalParameters Parameter optionalCondition should be final. 85
 Error coding HiddenField 'optionalCondition' hides a field. 85
 Error misc FinalParameters Parameter operator should be final. 85
 Error coding HiddenField 'operator' hides a field. 85
 Error misc FinalParameters Parameter filter should be final. 85
 Error coding HiddenField 'filter' hides a field. 85
 Error misc FinalParameters Parameter timepointCondition should be final. 85
 Error coding HiddenField 'timepointCondition' hides a field. 85
 Error misc FinalParameters Parameter conversionCondition should be final. 85
 Error coding HiddenField 'conversionCondition' hides a field. 85
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'isOptionalCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'isOptionalCondition' static/final/abstract/empty, or adding allowed annotation for the method. 95
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 95
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'setOptionalCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'setOptionalCondition' static/final/abstract/empty, or adding allowed annotation for the method. 99
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 99
 Error misc FinalParameters Parameter optionalCondition should be final. 99
 Error coding HiddenField 'optionalCondition' hides a field. 99
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getCaseSensitive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getCaseSensitive' static/final/abstract/empty, or adding allowed annotation for the method. 104
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 104
 Error sizes LineLength Line is longer than 80 characters (found 155). 107
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'setCaseSensitive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'setCaseSensitive' static/final/abstract/empty, or adding allowed annotation for the method. 116
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 116
 Error misc FinalParameters Parameter caseSensitive should be final. 116
 Error coding HiddenField 'caseSensitive' hides a field. 116
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'containsCaseInsensitiveValue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'containsCaseInsensitiveValue' static/final/abstract/empty, or adding allowed annotation for the method. 120
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 120
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'hasOperator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'hasOperator' static/final/abstract/empty, or adding allowed annotation for the method. 129
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 129
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getOperator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getOperator' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 133
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'setOperator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'setOperator' static/final/abstract/empty, or adding allowed annotation for the method. 137
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 137
 Error misc FinalParameters Parameter operator should be final. 137
 Error coding HiddenField 'operator' hides a field. 137
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getValue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getValue' static/final/abstract/empty, or adding allowed annotation for the method. 141
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 141
 Error sizes LineLength Line is longer than 80 characters (found 131). 144
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'setValue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'setValue' static/final/abstract/empty, or adding allowed annotation for the method. 153
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 153
 Error misc FinalParameters Parameter value should be final. 153
 Error coding HiddenField 'value' hides a field. 153
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getTimeZone' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getTimeZone' static/final/abstract/empty, or adding allowed annotation for the method. 157
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 157
 Error sizes LineLength Line is longer than 80 characters (found 140). 160
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'setTimeZone' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'setTimeZone' static/final/abstract/empty, or adding allowed annotation for the method. 169
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 169
 Error misc FinalParameters Parameter timeZone should be final. 169
 Error coding HiddenField 'timeZone' hides a field. 169
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'hasFilter' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'hasFilter' static/final/abstract/empty, or adding allowed annotation for the method. 173
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 173
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getFilter' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getFilter' static/final/abstract/empty, or adding allowed annotation for the method. 177
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 177
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 181
 Error misc FinalParameters Parameter filter should be final. 181
 Error coding HiddenField 'filter' hides a field. 181
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'hasConversionCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'hasConversionCondition' static/final/abstract/empty, or adding allowed annotation for the method. 190
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 190
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getConversionCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getConversionCondition' static/final/abstract/empty, or adding allowed annotation for the method. 194
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 194
 Error sizes LineLength Line is longer than 80 characters (found 82). 198
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 198
 Error misc FinalParameters Parameter conversionCondition should be final. 198
 Error coding HiddenField 'conversionCondition' hides a field. 198
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'hasTimepointCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'hasTimepointCondition' static/final/abstract/empty, or adding allowed annotation for the method. 207
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 207
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getTimepointCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getTimepointCondition' static/final/abstract/empty, or adding allowed annotation for the method. 211
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 211
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 215
 Error misc FinalParameters Parameter timepointCondition should be final. 215
 Error coding HiddenField 'timepointCondition' hides a field. 215
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'hasVocabularyCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'hasVocabularyCondition' static/final/abstract/empty, or adding allowed annotation for the method. 225
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 225
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getVocabularyCondition' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getVocabularyCondition' static/final/abstract/empty, or adding allowed annotation for the method. 229
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 229
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 234
 Error misc FinalParameters Parameter vocabularyCondition should be final. 234
 Error coding HiddenField 'vocabularyCondition' hides a field. 234
 Error sizes LineLength Line is longer than 80 characters (found 91). 248
 Error sizes LineLength Line is longer than 80 characters (found 110). 258
 Error sizes LineLength Line is longer than 80 characters (found 106). 261
 Error sizes LineLength Line is longer than 80 characters (found 84). 262
 Error sizes LineLength Line is longer than 80 characters (found 159). 265
 Error sizes LineLength Line is longer than 80 characters (found 141). 268
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 273
 Error design DesignForExtension Class 'Condition' 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 'Condition' final or making the method 'setName' static/final/abstract/empty, or adding allowed annotation for the method. 281
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 281
 Error misc FinalParameters Parameter name should be final. 281
 Error coding HiddenField 'name' hides a field. 281
 Error design DesignForExtension Class 'Condition' looks like designed for extension (can be subclassed), but the method 'getLabel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Condition' final or making the method 'getLabel' static/final/abstract/empty, or adding allowed annotation for the method. 285
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 285
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 289
 Error misc FinalParameters Parameter label should be final. 289
 Error coding HiddenField 'label' hides a field. 289
 Error design DesignForExtension Class 'Condition' 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 'Condition' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 293
 Error design DesignForExtension Class 'Condition' 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 'Condition' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 310
 Error coding MagicNumber '3' is a magic number. 312
 Error coding MagicNumber '47' is a magic number. 313
 Error coding MagicNumber '47' is a magic number. 314
 Error coding MagicNumber '47' is a magic number. 315
 Error coding MagicNumber '47' is a magic number. 316
 Error coding MagicNumber '47' is a magic number. 317
 Error coding MagicNumber '47' is a magic number. 318
 Error coding MagicNumber '47' is a magic number. 319
 Error coding MagicNumber '47' is a magic number. 320
 Error coding MagicNumber '47' is a magic number. 321
 Error coding MagicNumber '47' is a magic number. 322
 Error coding MagicNumber '47' is a magic number. 323
 Error design DesignForExtension Class 'Condition' 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 'Condition' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 327
 Error misc FinalParameters Parameter obj should be final. 328
 Error sizes LineLength Line is longer than 80 characters (found 81). 363
 Error sizes LineLength Line is longer than 80 characters (found 83). 366
 Error sizes LineLength Line is longer than 80 characters (found 83). 369

cz/zcu/mre/qbuilder/model/Endpoint.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 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 regexp RegexpSingleline Line has trailing spaces. 37
 Error design DesignForExtension Class 'Endpoint' looks like designed for extension (can be subclassed), but the method 'getActive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Endpoint' final or making the method 'getActive' static/final/abstract/empty, or adding allowed annotation for the method. 38
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 38
 Error design DesignForExtension Class 'Endpoint' looks like designed for extension (can be subclassed), but the method 'setActive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Endpoint' final or making the method 'setActive' static/final/abstract/empty, or adding allowed annotation for the method. 42
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 42
 Error misc FinalParameters Parameter active should be final. 42
 Error coding HiddenField 'active' hides a field. 42
 Error design DesignForExtension Class 'Endpoint' looks like designed for extension (can be subclassed), but the method 'getEndpoints' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Endpoint' final or making the method 'getEndpoints' static/final/abstract/empty, or adding allowed annotation for the method. 46
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 46
 Error design DesignForExtension Class 'Endpoint' looks like designed for extension (can be subclassed), but the method 'setEndpoints' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Endpoint' final or making the method 'setEndpoints' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 50
 Error misc FinalParameters Parameter endpoints should be final. 50
 Error coding HiddenField 'endpoints' hides a field. 50
 Error design DesignForExtension Class 'Endpoint' looks like designed for extension (can be subclassed), but the method 'getTimeout' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Endpoint' final or making the method 'getTimeout' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 54
 Error design DesignForExtension Class 'Endpoint' looks like designed for extension (can be subclassed), but the method 'setTimeout' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Endpoint' final or making the method 'setTimeout' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 58
 Error misc FinalParameters Parameter timeout should be final. 58
 Error coding HiddenField 'timeout' hides a field. 58
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error design DesignForExtension Class 'Endpoint' 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 'Endpoint' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error sizes LineLength Line is longer than 80 characters (found 109). 65
 Error design DesignForExtension Class 'Endpoint' 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 'Endpoint' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error coding MagicNumber '3' is a magic number. 70
 Error coding MagicNumber '29' is a magic number. 71
 Error coding MagicNumber '29' is a magic number. 72
 Error coding MagicNumber '29' is a magic number. 73
 Error design DesignForExtension Class 'Endpoint' 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 'Endpoint' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error misc FinalParameters Parameter obj should be final. 78

cz/zcu/mre/qbuilder/model/MessageSourceHolder.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 33
 Error misc FinalParameters Parameter key should be final. 33
 Error sizes LineLength Line is longer than 80 characters (found 84). 34
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter messageSource should be final. 37
 Error coding HiddenField 'messageSource' hides a field. 37

cz/zcu/mre/qbuilder/model/Operator.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 32
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error javadoc JavadocVariable Missing a Javadoc comment. 83
 Error misc FinalParameters Parameter messageKey should be final. 85
 Error coding HiddenField 'messageKey' hides a field. 85
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 89
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 93

cz/zcu/mre/qbuilder/model/Options.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 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 design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'isDistinct' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'isDistinct' static/final/abstract/empty, or adding allowed annotation for the method. 36
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 Error design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'getDistinct' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'getDistinct' static/final/abstract/empty, or adding allowed annotation for the method. 40
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 40
 Error design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'setDistinct' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'setDistinct' static/final/abstract/empty, or adding allowed annotation for the method. 44
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 44
 Error misc FinalParameters Parameter distinct should be final. 44
 Error coding HiddenField 'distinct' hides a field. 44
 Error design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'getLimit' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'getLimit' static/final/abstract/empty, or adding allowed annotation for the method. 48
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 48
 Error design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'setLimit' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'setLimit' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter limit should be final. 52
 Error coding HiddenField 'limit' hides a field. 52
 Error design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'getOffset' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'getOffset' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error design DesignForExtension Class 'Options' looks like designed for extension (can be subclassed), but the method 'setOffset' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Options' final or making the method 'setOffset' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 60
 Error misc FinalParameters Parameter offset should be final. 60
 Error coding HiddenField 'offset' hides a field. 60
 Error design DesignForExtension Class 'Options' 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 'Options' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error sizes LineLength Line is longer than 80 characters (found 101). 66

cz/zcu/mre/qbuilder/model/OrderBy.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error sizes LineLength Line is longer than 80 characters (found 109). 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error misc FinalParameters Parameter root should be final. 40
 Error sizes LineLength Line is longer than 80 characters (found 131). 42
 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 JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 53
 Error sizes LineLength Line is longer than 80 characters (found 112). 56
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error misc FinalParameters Parameter attribute should be final. 56
 Error coding HiddenField 'attribute' hides a field. 56
 Error misc FinalParameters Parameter ascending should be final. 56
 Error coding HiddenField 'ascending' hides a field. 56
 Error misc FinalParameters Parameter timepointOrder should be final. 56
 Error coding HiddenField 'timepointOrder' hides a field. 56
 Error misc FinalParameters Parameter conversion should be final. 56
 Error coding HiddenField 'conversion' hides a field. 56
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'hasAttribute' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'hasAttribute' static/final/abstract/empty, or adding allowed annotation for the method. 65
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 65
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'getAttribute' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'getAttribute' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 69
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 74
 Error misc FinalParameters Parameter attribute should be final. 74
 Error coding HiddenField 'attribute' hides a field. 74
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'isAscending' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'isAscending' static/final/abstract/empty, or adding allowed annotation for the method. 84
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 84
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'setAscending' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'setAscending' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter ascending should be final. 88
 Error coding HiddenField 'ascending' hides a field. 88
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 97
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'hasConversion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'hasConversion' static/final/abstract/empty, or adding allowed annotation for the method. 110
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 110
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'getConversion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'getConversion' static/final/abstract/empty, or adding allowed annotation for the method. 114
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 114
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 119
 Error misc FinalParameters Parameter conversion should be final. 119
 Error coding HiddenField 'conversion' hides a field. 119
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'hasTimepointOrder' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'hasTimepointOrder' static/final/abstract/empty, or adding allowed annotation for the method. 128
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 128
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'getTimepointOrder' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'getTimepointOrder' static/final/abstract/empty, or adding allowed annotation for the method. 132
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 132
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 137
 Error misc FinalParameters Parameter timepointOrder should be final. 137
 Error coding HiddenField 'timepointOrder' hides a field. 137
 Error sizes LineLength Line is longer than 80 characters (found 97). 152
 Error sizes LineLength Line is longer than 80 characters (found 106). 163
 Error sizes LineLength Line is longer than 80 characters (found 102). 166
 Error sizes LineLength Line is longer than 80 characters (found 135). 170
 Error sizes LineLength Line is longer than 80 characters (found 163). 172
 Error sizes LineLength Line is longer than 80 characters (found 118). 175
 Error sizes LineLength Line is longer than 80 characters (found 145). 176
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 181
 Error design DesignForExtension Class 'OrderBy' 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 'OrderBy' final or making the method 'setName' static/final/abstract/empty, or adding allowed annotation for the method. 189
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 189
 Error misc FinalParameters Parameter name should be final. 189
 Error coding HiddenField 'name' hides a field. 189
 Error design DesignForExtension Class 'OrderBy' looks like designed for extension (can be subclassed), but the method 'getLabel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'OrderBy' final or making the method 'getLabel' static/final/abstract/empty, or adding allowed annotation for the method. 193
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 193
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 197
 Error misc FinalParameters Parameter label should be final. 197
 Error coding HiddenField 'label' hides a field. 197
 Error design DesignForExtension Class 'OrderBy' 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 'OrderBy' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 201
 Error design DesignForExtension Class 'OrderBy' 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 'OrderBy' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 214
 Error coding MagicNumber '3' is a magic number. 216
 Error coding MagicNumber '13' is a magic number. 217
 Error coding MagicNumber '13' is a magic number. 218
 Error coding MagicNumber '13' is a magic number. 219
 Error coding MagicNumber '13' is a magic number. 220
 Error coding MagicNumber '13' is a magic number. 221
 Error coding MagicNumber '13' is a magic number. 222
 Error design DesignForExtension Class 'OrderBy' 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 'OrderBy' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 226
 Error misc FinalParameters Parameter obj should be final. 227

cz/zcu/mre/qbuilder/model/OutputFormat.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 74
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error javadoc JavadocVariable Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter messageKey should be final. 79
 Error coding HiddenField 'messageKey' hides a field. 79
 Error misc FinalParameters Parameter formatName should be final. 79
 Error coding HiddenField 'formatName' hides a field. 79
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 84
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 89
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 93

cz/zcu/mre/qbuilder/model/Property.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 35
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 39
 Error misc FinalParameters Parameter type should be final. 39
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error misc FinalParameters Parameter type should be final. 43
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 47
 Error misc FinalParameters Parameter type should be final. 47
 Error design DesignForExtension Class 'Property' 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 'Property' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'nodeToString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'nodeToString' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error design DesignForExtension Class 'Property' 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 'Property' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error misc FinalParameters Parameter obj should be final. 61
 Error design DesignForExtension Class 'Property' 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 'Property' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 76

cz/zcu/mre/qbuilder/model/QueryData.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 19
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 63
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 65
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getStringPivotClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getStringPivotClass' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setPivotClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setPivotClass' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 73
 Error misc FinalParameters Parameter pivotClass should be final. 74
 Error coding HiddenField 'pivotClass' hides a field. 74
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getStringQuery' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getStringQuery' static/final/abstract/empty, or adding allowed annotation for the method. 81
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 81
 Error sizes LineLength Line is longer than 80 characters (found 87). 85
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getOntology' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getOntology' static/final/abstract/empty, or adding allowed annotation for the method. 91
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 91
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setOntology' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setOntology' static/final/abstract/empty, or adding allowed annotation for the method. 95
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 95
 Error misc FinalParameters Parameter ontology should be final. 95
 Error coding HiddenField 'ontology' hides a field. 95
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getPivotClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getPivotClass' static/final/abstract/empty, or adding allowed annotation for the method. 99
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 99
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setPivotClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setPivotClass' static/final/abstract/empty, or adding allowed annotation for the method. 103
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 103
 Error misc FinalParameters Parameter pivotClass should be final. 103
 Error coding HiddenField 'pivotClass' hides a field. 103
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 107
 Error misc FinalParameters Parameter variable should be final. 107
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'remove' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'remove' static/final/abstract/empty, or adding allowed annotation for the method. 111
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 111
 Error misc FinalParameters Parameter variable should be final. 111
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getVariables' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getVariables' static/final/abstract/empty, or adding allowed annotation for the method. 115
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 115
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setVariables' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setVariables' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 119
 Error misc FinalParameters Parameter variables should be final. 119
 Error coding HiddenField 'variables' hides a field. 119
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 123
 Error misc FinalParameters Parameter order should be final. 123
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'remove' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'remove' static/final/abstract/empty, or adding allowed annotation for the method. 128
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 128
 Error misc FinalParameters Parameter order should be final. 128
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getOrdering' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getOrdering' static/final/abstract/empty, or adding allowed annotation for the method. 132
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 132
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setOrdering' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setOrdering' static/final/abstract/empty, or adding allowed annotation for the method. 136
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 136
 Error misc FinalParameters Parameter ordering should be final. 136
 Error coding HiddenField 'ordering' hides a field. 136
 Error design DesignForExtension Class 'QueryData' 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 'QueryData' final or making the method 'add' static/final/abstract/empty, or adding allowed annotation for the method. 140
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 140
 Error misc FinalParameters Parameter condition should be final. 140
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'remove' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'remove' static/final/abstract/empty, or adding allowed annotation for the method. 144
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 144
 Error misc FinalParameters Parameter condition should be final. 144
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getConditions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getConditions' static/final/abstract/empty, or adding allowed annotation for the method. 148
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 148
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getConditionsSize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getConditionsSize' static/final/abstract/empty, or adding allowed annotation for the method. 152
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 152
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setConditions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setConditions' static/final/abstract/empty, or adding allowed annotation for the method. 156
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 156
 Error misc FinalParameters Parameter conditions should be final. 156
 Error coding HiddenField 'conditions' hides a field. 156
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getOptions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getOptions' static/final/abstract/empty, or adding allowed annotation for the method. 160
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 160
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setOptions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setOptions' static/final/abstract/empty, or adding allowed annotation for the method. 164
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 164
 Error misc FinalParameters Parameter options should be final. 164
 Error coding HiddenField 'options' hides a field. 164
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getOutputFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getOutputFormat' static/final/abstract/empty, or adding allowed annotation for the method. 168
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 168
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setoutputFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setoutputFormat' static/final/abstract/empty, or adding allowed annotation for the method. 172
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 172
 Error misc FinalParameters Parameter outputFormat should be final. 172
 Error coding HiddenField 'outputFormat' hides a field. 172
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getActiveForm' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getActiveForm' static/final/abstract/empty, or adding allowed annotation for the method. 176
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 176
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setActiveForm' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setActiveForm' static/final/abstract/empty, or adding allowed annotation for the method. 180
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 180
 Error misc FinalParameters Parameter active should be final. 180
 Error coding HiddenField 'active' hides a field. 180
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getEndpoint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getEndpoint' static/final/abstract/empty, or adding allowed annotation for the method. 184
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 184
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setEndpoint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setEndpoint' static/final/abstract/empty, or adding allowed annotation for the method. 188
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 188
 Error misc FinalParameters Parameter endpoint should be final. 188
 Error coding HiddenField 'endpoint' hides a field. 188
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getQuery' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getQuery' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 192
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setQuery' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setQuery' static/final/abstract/empty, or adding allowed annotation for the method. 196
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 196
 Error misc FinalParameters Parameter query should be final. 197
 Error coding HiddenField 'query' hides a field. 197
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getResults' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getResults' static/final/abstract/empty, or adding allowed annotation for the method. 201
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 201
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setResults' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setResults' static/final/abstract/empty, or adding allowed annotation for the method. 205
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 205
 Error misc FinalParameters Parameter results should be final. 205
 Error coding HiddenField 'results' hides a field. 205
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'getActive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'getActive' static/final/abstract/empty, or adding allowed annotation for the method. 211
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 211
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setActive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setActive' static/final/abstract/empty, or adding allowed annotation for the method. 215
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 215
 Error misc FinalParameters Parameter active should be final. 215
 Error coding HiddenField 'active' hides a field. 215
 Error design DesignForExtension Class 'QueryData' 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 'QueryData' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 219
 Error sizes LineLength Line is longer than 80 characters (found 354). 221
 Error design DesignForExtension Class 'QueryData' 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 'QueryData' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 224
 Error coding MagicNumber '5' is a magic number. 226
 Error coding MagicNumber '41' is a magic number. 227
 Error coding MagicNumber '41' is a magic number. 228
 Error coding MagicNumber '41' is a magic number. 229
 Error coding MagicNumber '41' is a magic number. 230
 Error coding MagicNumber '41' is a magic number. 231
 Error coding MagicNumber '41' is a magic number. 232
 Error coding MagicNumber '41' is a magic number. 233
 Error coding MagicNumber '41' is a magic number. 234
 Error coding MagicNumber '41' is a magic number. 235
 Error coding MagicNumber '41' is a magic number. 236
 Error coding MagicNumber '41' is a magic number. 237
 Error design DesignForExtension Class 'QueryData' 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 'QueryData' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 241
 Error misc FinalParameters Parameter obj should be final. 242
 Error design DesignForExtension Class 'QueryData' looks like designed for extension (can be subclassed), but the method 'setLanguageService' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'QueryData' final or making the method 'setLanguageService' static/final/abstract/empty, or adding allowed annotation for the method. 271
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 271
 Error misc FinalParameters Parameter languageService should be final. 271
 Error coding HiddenField 'languageService' hides a field. 271
 Error regexp RegexpSingleline Line has trailing spaces. 273

cz/zcu/mre/qbuilder/model/RootNode.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error design VisibilityModifier Variable 'node' must be private and have accessor methods. 38
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 40
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 43
 Error misc FinalParameters Parameter clazz should be final. 43
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 48
 Error misc FinalParameters Parameter clazz should be final. 48
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 53
 Error misc FinalParameters Parameter clazz should be final. 53
 Error design DesignForExtension Class 'RootNode' 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 'RootNode' final or making the method 'getURI' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 57
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 66
 Error misc FinalParameters Parameter uri should be final. 67
 Error design DesignForExtension Class 'RootNode' looks like designed for extension (can be subclassed), but the method 'hasNode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RootNode' final or making the method 'hasNode' static/final/abstract/empty, or adding allowed annotation for the method. 72
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 72
 Error design DesignForExtension Class 'RootNode' looks like designed for extension (can be subclassed), but the method 'getNode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RootNode' final or making the method 'getNode' static/final/abstract/empty, or adding allowed annotation for the method. 76
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 76
 Error design DesignForExtension Class 'RootNode' looks like designed for extension (can be subclassed), but the method 'setNode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'RootNode' final or making the method 'setNode' static/final/abstract/empty, or adding allowed annotation for the method. 85
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 85
 Error misc FinalParameters Parameter node should be final. 85
 Error coding HiddenField 'node' hides a field. 85
 Error design DesignForExtension Class 'RootNode' 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 'RootNode' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 90
 Error design DesignForExtension Class 'RootNode' 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 'RootNode' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 95
 Error coding MagicNumber '5' is a magic number. 97
 Error coding MagicNumber '97' is a magic number. 98
 Error design DesignForExtension Class 'RootNode' 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 'RootNode' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error misc FinalParameters Parameter obj should be final. 103

cz/zcu/mre/qbuilder/model/Timepoint.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error imports UnusedImports Unused import - org.springframework.beans.factory.annotation.Autowired. 28
 Error imports UnusedImports Unused import - org.springframework.stereotype.Component. 29
 Error imports UnusedImports Unused import - cz.zcu.mre.qbuilder.helper.OntologyHelper. 30
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 38
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error misc FinalParameters Parameter type should be final. 41
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error misc FinalParameters Parameter type should be final. 45
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 49
 Error misc FinalParameters Parameter type should be final. 49
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error design DesignForExtension Class 'Timepoint' 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 'Timepoint' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error design DesignForExtension Class 'Timepoint' 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 'Timepoint' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error misc FinalParameters Parameter obj should be final. 60
 Error design DesignForExtension Class 'Timepoint' 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 'Timepoint' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 75

cz/zcu/mre/qbuilder/model/Type.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 34
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter type should be final. 37
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 41
 Error misc FinalParameters Parameter type should be final. 41
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error misc FinalParameters Parameter type should be final. 45
 Error design DesignForExtension Class 'Type' 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 'Type' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 49
 Error design DesignForExtension Class 'Type' looks like designed for extension (can be subclassed), but the method 'nodeToString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Type' final or making the method 'nodeToString' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 54

cz/zcu/mre/qbuilder/model/TypeConversion.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error whitespace FileTabCharacter File contains tab characters (this is the first instance). 29
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error misc FinalParameters Parameter messageKey should be final. 73
 Error coding HiddenField 'messageKey' hides a field. 73
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 77
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 81
 Error regexp RegexpSingleline Line has trailing spaces. 84
 Error regexp RegexpSingleline Line has trailing spaces. 85

cz/zcu/mre/qbuilder/model/Value.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 36
 Error misc FinalParameters Parameter str should be final. 36
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Error misc FinalParameters Parameter str should be final. 45
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 54
 Error misc FinalParameters Parameter str should be final. 54
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 63
 Error misc FinalParameters Parameter str should be final. 63
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 68
 Error misc FinalParameters Parameter str should be final. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 85
 Error design VisibilityModifier Variable 'valueString' must be private and have accessor methods. 85
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 87
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 90
 Error misc FinalParameters Parameter type should be final. 90
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 94
 Error misc FinalParameters Parameter type should be final. 94
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 98
 Error misc FinalParameters Parameter type should be final. 98
 Error design DesignForExtension Class 'Value' looks like designed for extension (can be subclassed), but the method 'nodeToString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Value' final or making the method 'nodeToString' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 102
 Error misc FinalParameters Parameter node should be final. 102
 Error design DesignForExtension Class 'Value' 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 'Value' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 106
 Error sizes LineLength Line is longer than 80 characters (found 120). 115

cz/zcu/mre/qbuilder/model/Variable.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 91). 2
 Error sizes LineLength Line is longer than 80 characters (found 82). 10
 Error sizes LineLength Line is longer than 80 characters (found 82). 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error misc FinalParameters Parameter root should be final. 39
 Error sizes LineLength Line is longer than 80 characters (found 131). 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 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 JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 53
 Error sizes LineLength Line is longer than 80 characters (found 89). 56
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 56
 Error misc FinalParameters Parameter type should be final. 56
 Error coding HiddenField 'type' hides a field. 56
 Error misc FinalParameters Parameter timepoint should be final. 56
 Error coding HiddenField 'timepoint' hides a field. 56
 Error misc FinalParameters Parameter property should be final. 56
 Error coding HiddenField 'property' hides a field. 56
 Error misc FinalParameters Parameter dataType should be final. 56
 Error coding HiddenField 'dataType' hides a field. 56
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'hasTimepoint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'hasTimepoint' static/final/abstract/empty, or adding allowed annotation for the method. 65
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 65
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'getTimepoint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'getTimepoint' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 69
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 74
 Error misc FinalParameters Parameter timepoint should be final. 74
 Error coding HiddenField 'timepoint' hides a field. 74
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'hasType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'hasType' static/final/abstract/empty, or adding allowed annotation for the method. 85
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 85
 Error design DesignForExtension Class 'Variable' 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 'Variable' final or making the method 'getType' static/final/abstract/empty, or adding allowed annotation for the method. 89
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 89
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 93
 Error misc FinalParameters Parameter type should be final. 93
 Error coding HiddenField 'type' hides a field. 93
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'hasProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'hasProperty' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 102
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'getProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'getProperty' static/final/abstract/empty, or adding allowed annotation for the method. 106
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 106
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 111
 Error misc FinalParameters Parameter property should be final. 111
 Error coding HiddenField 'property' hides a field. 111
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'hasDataType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'hasDataType' static/final/abstract/empty, or adding allowed annotation for the method. 121
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 121
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'getDataType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'getDataType' static/final/abstract/empty, or adding allowed annotation for the method. 125
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 125
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 130
 Error misc FinalParameters Parameter dataType should be final. 130
 Error coding HiddenField 'dataType' hides a field. 130
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'hasVocabulary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'hasVocabulary' static/final/abstract/empty, or adding allowed annotation for the method. 139
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 139
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'getVocabulary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'getVocabulary' static/final/abstract/empty, or adding allowed annotation for the method. 143
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 143
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 148
 Error misc FinalParameters Parameter vocabulary should be final. 148
 Error coding HiddenField 'vocabulary' hides a field. 148
 Error sizes LineLength Line is longer than 80 characters (found 95). 162
 Error sizes LineLength Line is longer than 80 characters (found 97). 177
 Error sizes LineLength Line is longer than 80 characters (found 134). 181
 Error sizes LineLength Line is longer than 80 characters (found 116). 184
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'isOptional' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'isOptional' static/final/abstract/empty, or adding allowed annotation for the method. 188
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 188
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'setOptional' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'setOptional' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter optional should be final. 192
 Error coding HiddenField 'optional' hides a field. 192
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 196
 Error design DesignForExtension Class 'Variable' 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 'Variable' final or making the method 'setName' static/final/abstract/empty, or adding allowed annotation for the method. 204
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 204
 Error misc FinalParameters Parameter name should be final. 204
 Error coding HiddenField 'name' hides a field. 204
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'getLabel' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'getLabel' static/final/abstract/empty, or adding allowed annotation for the method. 208
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 208
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 212
 Error misc FinalParameters Parameter label should be final. 212
 Error coding HiddenField 'label' hides a field. 212
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'isVisible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'isVisible' static/final/abstract/empty, or adding allowed annotation for the method. 216
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 216
 Error design DesignForExtension Class 'Variable' looks like designed for extension (can be subclassed), but the method 'setVisible' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Variable' final or making the method 'setVisible' static/final/abstract/empty, or adding allowed annotation for the method. 220
 Error javadoc MissingJavadocMethod Missing a Javadoc comment. 220
 Error misc FinalParameters Parameter visible should be final. 220
 Error coding HiddenField 'visible' hides a field. 220
 Error design DesignForExtension Class 'Variable' 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 'Variable' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 224
 Error design DesignForExtension Class 'Variable' 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 'Variable' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 239
 Error coding MagicNumber '3' is a magic number. 241
 Error coding MagicNumber '13' is a magic number. 242
 Error coding MagicNumber '13' is a magic number. 243
 Error coding MagicNumber '13' is a magic number. 244
 Error coding MagicNumber '13' is a magic number. 245
 Error coding MagicNumber '13' is a magic number. 246
 Error coding MagicNumber '13' is a magic number. 247
 Error coding MagicNumber '13' is a magic number. 248
 Error coding MagicNumber '13' is a magic number. 249
 Error design DesignForExtension Class 'Variable' 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 'Variable' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 253
 Error misc FinalParameters Parameter obj should be final. 254