Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 6.11.2 with build-config/lutece_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
29 0 1 3612

Files

File  I  W  E
com/tvnavig/server/asset/service/common/MetaValueResult.java 0 0 182
com/tvnavig/server/searchengine/SearchAssetService.java 0 0 15
com/tvnavig/server/searchengine/SearchAssetServiceException.java 0 0 84
com/tvnavig/server/searchengine/SearchAssetServiceService.java 0 0 11
com/tvnavig/server/searchengine/SearchAssetServiceServiceLocator.java 0 0 150
com/tvnavig/server/searchengine/SearchAssetServiceSoapBindingStub.java 0 0 527
com/tvnavig/server/searchengine/service/common/AssetOGC.java 0 1 416
com/tvnavig/server/searchengine/service/common/AssetPlayer.java 0 0 145
com/tvnavig/server/user/UserService.java 0 0 17
com/tvnavig/server/user/UserServiceException.java 0 0 84
com/tvnavig/server/user/UserServiceService.java 0 0 11
com/tvnavig/server/user/UserServiceServiceLocator.java 0 0 150
com/tvnavig/server/user/UserServiceSoapBindingStub.java 0 0 560
com/tvnavig/server/user/service/common/MetaDataResult.java 0 0 201
com/tvnavig/server/user/service/common/UserDomainResult.java 0 0 145
com/tvnavig/server/user/service/common/UserGroupResult.java 0 0 182
com/tvnavig/server/user/service/common/UserGroupandMetaDataResult.java 0 0 169
com/tvnavig/server/user/service/common/UserServiceResult.java 0 0 256
com/tvnavig/server/util/ServiceException.java 0 0 128
fr/paris/lutece/plugins/parisvideo/business/IParisVideoDAO.java 0 0 5
fr/paris/lutece/plugins/parisvideo/business/ParisVideoAccount.java 0 0 29
fr/paris/lutece/plugins/parisvideo/business/ParisVideoDAO.java 0 0 3
fr/paris/lutece/plugins/parisvideo/business/ParisVideoHome.java 0 0 2
fr/paris/lutece/plugins/parisvideo/service/ParisvideoService.java 0 0 27
fr/paris/lutece/plugins/parisvideo/service/SingleSessionHttpTransport.java 0 0 10
fr/paris/lutece/plugins/parisvideo/web/ManageParisVideoJspBean.java 0 0 20
fr/paris/lutece/plugins/parisvideo/web/ParisvideoJspBean.java 0 0 83

Rules

Category Rule Violations Severity
blocks LeftCurly
  • option: "nl"
406  Error
NeedBraces 43  Error
RightCurly
  • option: "alone"
15  Error
coding DeclarationOrder 52  Error
ExplicitInitialization 27  Error
HiddenField 62  Error
SimplifyBooleanExpression 9  Error
design HideUtilityClassConstructor 1  Error
MutableException 6  Error
VisibilityModifier 2  Error
javadoc JavadocMethod 306  Error
JavadocType 20  Error
modifier RedundantModifier 13  Error
naming LocalVariableName
  • format: "^[a-z][a-zA-Z0-9]*$"
58  Error
MemberName
  • format: "^_[a-z](_?[a-zA-Z0-9])*$"
67  Error
MethodName
  • format: "^[a-z][a-zA-Z0-9]*$"
2  Error
PackageName
  • format: "^fr\.paris\.[a-z][a-z0-9\.]*$"
19  Error
ParameterName
  • format: "^[a-z][a-zA-Z0-9]*$"
45  Error
StaticVariableName
  • format: "^_[a-z](_?[a-zA-Z0-9])*$"
13  Error
sizes ParameterNumber 1  Warning
whitespace ParenPad
  • option: "space"
2319  Error
WhitespaceAround
  • tokens: "ASSIGN,EQUAL"
127  Error

Details

com/tvnavig/server/asset/service/common/MetaValueResult.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.asset.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 63 should be on a new line. 43
 Error naming MemberName Name 'id' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'metaDataId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error naming MemberName Name 'value' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 50
 Error blocks LeftCurly '{' at column 30 should be on a new line. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error coding HiddenField 'id' hides a field. 54
 Error coding HiddenField 'metaDataId' hides a field. 55
 Error coding HiddenField 'value' hides a field. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error blocks LeftCurly '{' at column 36 should be on a new line. 56
 Error blocks LeftCurly '{' at column 38 should be on a new line. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error coding HiddenField 'id' hides a field. 78
 Error javadoc JavadocMethod Expected @param tag for 'id'. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error blocks LeftCurly '{' at column 45 should be on a new line. 78
 Error blocks LeftCurly '{' at column 46 should be on a new line. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 98
 Error coding HiddenField 'metaDataId' hides a field. 98
 Error javadoc JavadocMethod Expected @param tag for 'metaDataId'. 98
 Error whitespace ParenPad ')' is not preceded with whitespace. 98
 Error blocks LeftCurly '{' at column 61 should be on a new line. 98
 Error blocks LeftCurly '{' at column 40 should be on a new line. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 118
 Error coding HiddenField 'value' hides a field. 118
 Error javadoc JavadocMethod Expected @param tag for 'value'. 118
 Error whitespace ParenPad ')' is not preceded with whitespace. 118
 Error blocks LeftCurly '{' at column 50 should be on a new line. 118
 Error coding DeclarationOrder Instance variable definition in wrong order. 122
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 122
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 122
 Error javadoc JavadocMethod Missing a Javadoc comment. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error blocks LeftCurly '{' at column 62 should be on a new line. 123
 Error blocks NeedBraces 'if' construct must use '{}'s. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error blocks NeedBraces 'if' construct must use '{}'s. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error blocks NeedBraces 'if' construct must use '{}'s. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128
 Error blocks LeftCurly '{' at column 35 should be on a new line. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 129
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 132
 Error coding SimplifyBooleanExpression Expression can be simplified. 133
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 134
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 134
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 134
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 134
 Error whitespace ParenPad ')' is not preceded with whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad '(' is not followed by whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 137
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 137
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 137
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 137
 Error whitespace ParenPad ')' is not preceded with whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 140
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 140
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 140
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error coding DeclarationOrder Instance variable definition in wrong order. 147
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 147
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 147
 Error javadoc JavadocMethod Missing a Javadoc comment. 148
 Error blocks LeftCurly '{' at column 40 should be on a new line. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error blocks LeftCurly '{' at column 29 should be on a new line. 149
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error blocks LeftCurly '{' at column 30 should be on a new line. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error blocks LeftCurly '{' at column 38 should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error blocks LeftCurly '{' at column 33 should be on a new line. 160
 Error coding DeclarationOrder Static variable definition in wrong order. 168
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error blocks LeftCurly '{' at column 12 should be on a new line. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 177
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error whitespace ParenPad '(' is not followed by whitespace. 178
 Error whitespace ParenPad ')' is not preceded with whitespace. 178
 Error whitespace ParenPad '(' is not followed by whitespace. 180
 Error whitespace ParenPad ')' is not preceded with whitespace. 180
 Error whitespace ParenPad '(' is not followed by whitespace. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 181
 Error whitespace ParenPad ')' is not preceded with whitespace. 181
 Error whitespace ParenPad ')' is not preceded with whitespace. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad ')' is not preceded with whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 189
 Error whitespace ParenPad ')' is not preceded with whitespace. 189
 Error whitespace ParenPad '(' is not followed by whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error javadoc JavadocMethod Expected an @return tag. 196
 Error blocks LeftCurly '{' at column 70 should be on a new line. 196
 Error javadoc JavadocMethod Expected an @return tag. 203
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 204
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 205
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 205
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 206
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error blocks LeftCurly '{' at column 48 should be on a new line. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error javadoc JavadocMethod Expected an @return tag. 215
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 216
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 217
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 217
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 218
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error blocks LeftCurly '{' at column 48 should be on a new line. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 221

com/tvnavig/server/searchengine/SearchAssetService.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 61 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error modifier RedundantModifier Redundant 'public' modifier. 44
 Error whitespace ParenPad '(' is not followed by whitespace. 44
 Error whitespace ParenPad ')' is not preceded with whitespace. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 45
 Error modifier RedundantModifier Redundant 'public' modifier. 45
 Error whitespace ParenPad '(' is not followed by whitespace. 45
 Error whitespace ParenPad ')' is not preceded with whitespace. 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error modifier RedundantModifier Redundant 'public' modifier. 46
 Error whitespace ParenPad '(' is not followed by whitespace. 46
 Error whitespace ParenPad ')' is not preceded with whitespace. 46

com/tvnavig/server/searchengine/SearchAssetServiceException.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 125 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error blocks LeftCurly '{' at column 42 should be on a new line. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error whitespace ParenPad ')' is not preceded with whitespace. 48
 Error blocks LeftCurly '{' at column 38 should be on a new line. 48
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error coding DeclarationOrder Instance variable definition in wrong order. 53
 Error design MutableException The field '__equalsCalc' must be declared final. 53
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 53
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 54
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error blocks LeftCurly '{' at column 62 should be on a new line. 54
 Error blocks NeedBraces 'if' construct must use '{}'s. 55
 Error whitespace ParenPad '(' is not followed by whitespace. 55
 Error whitespace ParenPad '(' is not followed by whitespace. 55
 Error whitespace ParenPad ')' is not preceded with whitespace. 55
 Error whitespace ParenPad ')' is not preceded with whitespace. 55
 Error blocks NeedBraces 'if' construct must use '{}'s. 57
 Error whitespace ParenPad '(' is not followed by whitespace. 57
 Error whitespace ParenPad ')' is not preceded with whitespace. 57
 Error blocks NeedBraces 'if' construct must use '{}'s. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 58
 Error whitespace ParenPad ')' is not preceded with whitespace. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 59
 Error whitespace ParenPad ')' is not preceded with whitespace. 59
 Error blocks LeftCurly '{' at column 35 should be on a new line. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 60
 Error whitespace ParenPad ')' is not preceded with whitespace. 60
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 64
 Error whitespace ParenPad ')' is not preceded with whitespace. 64
 Error coding DeclarationOrder Instance variable definition in wrong order. 69
 Error design MutableException The field '__hashCodeCalc' must be declared final. 69
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 69
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 69
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error blocks LeftCurly '{' at column 40 should be on a new line. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error blocks LeftCurly '{' at column 29 should be on a new line. 71
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 75
 Error coding DeclarationOrder Static variable definition in wrong order. 81
 Error design MutableException The field 'typeDesc' must be declared final. 81
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 81
 Error whitespace ParenPad '(' is not followed by whitespace. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error blocks LeftCurly '{' at column 12 should be on a new line. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error javadoc JavadocMethod Expected an @return tag. 91
 Error blocks LeftCurly '{' at column 70 should be on a new line. 91
 Error javadoc JavadocMethod Expected an @return tag. 98
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 99
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 100
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 100
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 101
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 101
 Error blocks LeftCurly '{' at column 48 should be on a new line. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error javadoc JavadocMethod Expected an @return tag. 110
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 111
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 112
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 112
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 113
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error blocks LeftCurly '{' at column 48 should be on a new line. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error javadoc JavadocMethod Expected @param tag for 'qname'. 123
 Error javadoc JavadocMethod Expected @param tag for 'context'. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error javadoc JavadocMethod Expected @throws tag for 'java.io.IOException'. 123
 Error blocks LeftCurly '{' at column 145 should be on a new line. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124

com/tvnavig/server/searchengine/SearchAssetServiceService.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 74 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error modifier RedundantModifier Redundant 'public' modifier. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error modifier RedundantModifier Redundant 'public' modifier. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error modifier RedundantModifier Redundant 'public' modifier. 48
 Error whitespace ParenPad '(' is not followed by whitespace. 48
 Error whitespace ParenPad ')' is not preceded with whitespace. 48

com/tvnavig/server/searchengine/SearchAssetServiceServiceLocator.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 155 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 45
 Error blocks LeftCurly '{' at column 47 should be on a new line. 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 49
 Error whitespace ParenPad ')' is not preceded with whitespace. 49
 Error blocks LeftCurly '{' at column 89 should be on a new line. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' at column 142 should be on a new line. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error coding DeclarationOrder Instance variable definition in wrong order. 58
 Error naming MemberName Name 'SearchAssetService_address' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 60
 Error blocks LeftCurly '{' at column 60 should be on a new line. 60
 Error coding DeclarationOrder Instance variable definition in wrong order. 65
 Error naming MemberName Name 'SearchAssetServiceWSDDServiceName' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 65
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error blocks LeftCurly '{' at column 68 should be on a new line. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 71
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error blocks LeftCurly '{' at column 77 should be on a new line. 71
 Error javadoc JavadocMethod Missing a Javadoc comment. 75
 Error blocks LeftCurly '{' at column 125 should be on a new line. 75
 Error blocks LeftCurly '{' at column 13 should be on a new line. 77
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error blocks LeftCurly '{' at column 50 should be on a new line. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 81
 Error whitespace ParenPad ')' is not preceded with whitespace. 81
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error blocks LeftCurly '{' at column 149 should be on a new line. 86
 Error blocks LeftCurly '{' at column 13 should be on a new line. 87
 Error naming LocalVariableName Name '_stub' must match pattern '^[a-z][a-zA-Z0-9]*$'. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error blocks LeftCurly '{' at column 45 should be on a new line. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 97
 Error blocks LeftCurly '{' at column 80 should be on a new line. 97
 Error javadoc JavadocMethod Expected an @return tag. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error javadoc JavadocMethod Expected @param tag for 'serviceEndpointInterface'. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 106
 Error blocks LeftCurly '{' at column 106 should be on a new line. 106
 Error blocks LeftCurly '{' at column 13 should be on a new line. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error blocks LeftCurly '{' at column 118 should be on a new line. 108
 Error naming LocalVariableName Name '_stub' must match pattern '^[a-z][a-zA-Z0-9]*$'. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Error blocks LeftCurly '{' at column 39 should be on a new line. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error javadoc JavadocMethod Expected an @return tag. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error javadoc JavadocMethod Expected @param tag for 'portName'. 125
 Error javadoc JavadocMethod Expected @param tag for 'serviceEndpointInterface'. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 125
 Error blocks LeftCurly '{' at column 142 should be on a new line. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error blocks LeftCurly '{' at column 31 should be on a new line. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error blocks LeftCurly '{' at column 57 should be on a new line. 130
 Error blocks LeftCurly '{' at column 15 should be on a new line. 133
 Error naming LocalVariableName Name '_stub' must match pattern '^[a-z][a-zA-Z0-9]*$'. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad ')' is not preceded with whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error javadoc JavadocMethod Missing a Javadoc comment. 140
 Error blocks LeftCurly '{' at column 55 should be on a new line. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error whitespace ParenPad ')' is not preceded with whitespace. 141
 Error coding DeclarationOrder Instance variable definition in wrong order. 144
 Error naming MemberName Name 'ports' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 144
 Error coding ExplicitInitialization Variable 'ports' explicitly initialized to 'null' (default value for its type). 144
 Error javadoc JavadocMethod Missing a Javadoc comment. 146
 Error blocks LeftCurly '{' at column 42 should be on a new line. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 147
 Error whitespace ParenPad ')' is not preceded with whitespace. 147
 Error blocks LeftCurly '{' at column 28 should be on a new line. 147
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error javadoc JavadocMethod Expected @param tag for 'portName'. 157
 Error javadoc JavadocMethod Expected @param tag for 'address'. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 157
 Error blocks LeftCurly '{' at column 127 should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace ParenPad ')' is not preceded with whitespace. 159
 Error whitespace ParenPad ')' is not preceded with whitespace. 159
 Error blocks LeftCurly '{' at column 44 should be on a new line. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 171
 Error javadoc JavadocMethod Expected @param tag for 'portName'. 171
 Error javadoc JavadocMethod Expected @param tag for 'address'. 171
 Error whitespace ParenPad ')' is not preceded with whitespace. 171
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 171
 Error blocks LeftCurly '{' at column 136 should be on a new line. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172

com/tvnavig/server/searchengine/SearchAssetServiceSoapBindingStub.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 146 should be on a new line. 43
 Error naming MemberName Name 'cachedSerClasses' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'cachedSerQNames' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 45
 Error naming MemberName Name 'cachedSerFactories' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error naming MemberName Name 'cachedDeserFactories' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 47
 Error coding DeclarationOrder Static variable definition in wrong order. 49
 Error coding DeclarationOrder Variable access definition in wrong order. 49
 Error design VisibilityModifier Variable '_operations' must be private and have accessor methods. 49
 Error blocks LeftCurly '{' at column 12 should be on a new line. 51
 Error javadoc JavadocMethod Missing a Javadoc comment. 56
 Error naming MethodName Name '_initOperationDesc1' must match pattern '^[a-z][a-zA-Z0-9]*$'. 56
 Error blocks LeftCurly '{' at column 46 should be on a new line. 56
 Error whitespace ParenPad '(' is not followed by whitespace. 60
 Error whitespace ParenPad ')' is not preceded with whitespace. 60
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 62
 Error whitespace ParenPad ')' is not preceded with whitespace. 62
 Error whitespace ParenPad '(' is not followed by whitespace. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 63
 Error whitespace ParenPad ')' is not preceded with whitespace. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 63
 Error whitespace ParenPad ')' is not preceded with whitespace. 63
 Error whitespace ParenPad ')' is not preceded with whitespace. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 64
 Error whitespace ParenPad ')' is not preceded with whitespace. 64
 Error whitespace ParenPad '(' is not followed by whitespace. 65
 Error whitespace ParenPad '(' is not followed by whitespace. 65
 Error whitespace ParenPad ')' is not preceded with whitespace. 65
 Error whitespace ParenPad ')' is not preceded with whitespace. 65
 Error whitespace ParenPad '(' is not followed by whitespace. 66
 Error whitespace ParenPad ')' is not preceded with whitespace. 66
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 68
 Error whitespace ParenPad ')' is not preceded with whitespace. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 69
 Error whitespace ParenPad ')' is not preceded with whitespace. 69
 Error whitespace ParenPad '(' is not followed by whitespace. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error whitespace ParenPad '(' is not followed by whitespace. 73
 Error whitespace ParenPad ')' is not preceded with whitespace. 73
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 81
 Error whitespace ParenPad ')' is not preceded with whitespace. 81
 Error whitespace ParenPad '(' is not followed by whitespace. 82
 Error whitespace ParenPad '(' is not followed by whitespace. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error whitespace ParenPad '(' is not followed by whitespace. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error whitespace ParenPad '(' is not followed by whitespace. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 84
 Error whitespace ParenPad ')' is not preceded with whitespace. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 84
 Error whitespace ParenPad ')' is not preceded with whitespace. 84
 Error whitespace ParenPad ')' is not preceded with whitespace. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 90
 Error whitespace ParenPad ')' is not preceded with whitespace. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 90
 Error whitespace ParenPad ')' is not preceded with whitespace. 90
 Error whitespace ParenPad ')' is not preceded with whitespace. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error whitespace ParenPad '(' is not followed by whitespace. 95
 Error whitespace ParenPad ')' is not preceded with whitespace. 95
 Error whitespace ParenPad '(' is not followed by whitespace. 96
 Error whitespace ParenPad ')' is not preceded with whitespace. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad '(' is not followed by whitespace. 98
 Error whitespace ParenPad ')' is not preceded with whitespace. 98
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace ParenPad ')' is not preceded with whitespace. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace ParenPad ')' is not preceded with whitespace. 107
 Error whitespace ParenPad ')' is not preceded with whitespace. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad ')' is not preceded with whitespace. 111
 Error whitespace ParenPad ')' is not preceded with whitespace. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 119
 Error coding DeclarationOrder Constructor definition in wrong order. 124
 Error javadoc JavadocMethod Missing a Javadoc comment. 124
 Error blocks LeftCurly '{' at column 81 should be on a new line. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error coding DeclarationOrder Constructor definition in wrong order. 128
 Error javadoc JavadocMethod Missing a Javadoc comment. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128
 Error blocks LeftCurly '{' at column 136 should be on a new line. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 129
 Error coding DeclarationOrder Constructor definition in wrong order. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error whitespace ParenPad '(' is not followed by whitespace. 133
 Error whitespace ParenPad ')' is not preceded with whitespace. 133
 Error blocks LeftCurly '{' at column 110 should be on a new line. 133
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad ')' is not preceded with whitespace. 134
 Error blocks LeftCurly '{' at column 30 should be on a new line. 134
 Error blocks RightCurly '}' at column 9 should be alone on a line. 136
 Error blocks LeftCurly '{' at column 16 should be on a new line. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 156
 Error whitespace ParenPad ')' is not preceded with whitespace. 156
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 158
 Error whitespace ParenPad ')' is not preceded with whitespace. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 163
 Error whitespace ParenPad ')' is not preceded with whitespace. 163
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error whitespace ParenPad '(' is not followed by whitespace. 167
 Error whitespace ParenPad ')' is not preceded with whitespace. 167
 Error whitespace ParenPad '(' is not followed by whitespace. 168
 Error whitespace ParenPad ')' is not preceded with whitespace. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error whitespace ParenPad '(' is not followed by whitespace. 171
 Error whitespace ParenPad ')' is not preceded with whitespace. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 177
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error whitespace ParenPad '(' is not followed by whitespace. 178
 Error whitespace ParenPad ')' is not preceded with whitespace. 178
 Error whitespace ParenPad '(' is not followed by whitespace. 180
 Error whitespace ParenPad '(' is not followed by whitespace. 180
 Error whitespace ParenPad ')' is not preceded with whitespace. 180
 Error whitespace ParenPad ')' is not preceded with whitespace. 180
 Error whitespace ParenPad '(' is not followed by whitespace. 181
 Error whitespace ParenPad ')' is not preceded with whitespace. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad ')' is not preceded with whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 189
 Error whitespace ParenPad '(' is not followed by whitespace. 189
 Error whitespace ParenPad ')' is not preceded with whitespace. 189
 Error whitespace ParenPad ')' is not preceded with whitespace. 189
 Error whitespace ParenPad '(' is not followed by whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error whitespace ParenPad '(' is not followed by whitespace. 192
 Error whitespace ParenPad ')' is not preceded with whitespace. 192
 Error whitespace ParenPad '(' is not followed by whitespace. 193
 Error whitespace ParenPad ')' is not preceded with whitespace. 193
 Error whitespace ParenPad '(' is not followed by whitespace. 195
 Error whitespace ParenPad ')' is not preceded with whitespace. 195
 Error whitespace ParenPad '(' is not followed by whitespace. 196
 Error whitespace ParenPad ')' is not preceded with whitespace. 196
 Error whitespace ParenPad '(' is not followed by whitespace. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 199
 Error whitespace ParenPad ')' is not preceded with whitespace. 199
 Error whitespace ParenPad '(' is not followed by whitespace. 201
 Error whitespace ParenPad ')' is not preceded with whitespace. 201
 Error whitespace ParenPad '(' is not followed by whitespace. 202
 Error whitespace ParenPad ')' is not preceded with whitespace. 202
 Error whitespace ParenPad '(' is not followed by whitespace. 204
 Error whitespace ParenPad ')' is not preceded with whitespace. 204
 Error whitespace ParenPad '(' is not followed by whitespace. 205
 Error whitespace ParenPad ')' is not preceded with whitespace. 205
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error whitespace ParenPad '(' is not followed by whitespace. 208
 Error whitespace ParenPad ')' is not preceded with whitespace. 208
 Error whitespace ParenPad '(' is not followed by whitespace. 209
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error whitespace ParenPad '(' is not followed by whitespace. 211
 Error whitespace ParenPad ')' is not preceded with whitespace. 211
 Error whitespace ParenPad '(' is not followed by whitespace. 212
 Error whitespace ParenPad ')' is not preceded with whitespace. 212
 Error whitespace ParenPad '(' is not followed by whitespace. 213
 Error whitespace ParenPad ')' is not preceded with whitespace. 213
 Error javadoc JavadocMethod Missing a Javadoc comment. 217
 Error blocks LeftCurly '{' at column 88 should be on a new line. 217
 Error blocks LeftCurly '{' at column 13 should be on a new line. 218
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 220
 Error whitespace ParenPad ')' is not preceded with whitespace. 220
 Error blocks LeftCurly '{' at column 43 should be on a new line. 220
 Error whitespace ParenPad '(' is not followed by whitespace. 221
 Error whitespace ParenPad ')' is not preceded with whitespace. 221
 Error whitespace ParenPad '(' is not followed by whitespace. 223
 Error whitespace ParenPad ')' is not preceded with whitespace. 223
 Error blocks LeftCurly '{' at column 47 should be on a new line. 223
 Error whitespace ParenPad '(' is not followed by whitespace. 224
 Error whitespace ParenPad ')' is not preceded with whitespace. 224
 Error whitespace ParenPad '(' is not followed by whitespace. 226
 Error whitespace ParenPad ')' is not preceded with whitespace. 226
 Error blocks LeftCurly '{' at column 47 should be on a new line. 226
 Error whitespace ParenPad '(' is not followed by whitespace. 227
 Error whitespace ParenPad ')' is not preceded with whitespace. 227
 Error whitespace ParenPad '(' is not followed by whitespace. 229
 Error whitespace ParenPad ')' is not preceded with whitespace. 229
 Error blocks LeftCurly '{' at column 47 should be on a new line. 229
 Error whitespace ParenPad '(' is not followed by whitespace. 230
 Error whitespace ParenPad ')' is not preceded with whitespace. 230
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error whitespace ParenPad ')' is not preceded with whitespace. 232
 Error blocks LeftCurly '{' at column 46 should be on a new line. 232
 Error whitespace ParenPad '(' is not followed by whitespace. 233
 Error whitespace ParenPad ')' is not preceded with whitespace. 233
 Error whitespace ParenPad '(' is not followed by whitespace. 235
 Error whitespace ParenPad ')' is not preceded with whitespace. 235
 Error blocks LeftCurly '{' at column 47 should be on a new line. 235
 Error whitespace ParenPad '(' is not followed by whitespace. 236
 Error whitespace ParenPad ')' is not preceded with whitespace. 236
 Error whitespace ParenPad '(' is not followed by whitespace. 239
 Error whitespace ParenPad ')' is not preceded with whitespace. 239
 Error blocks LeftCurly '{' at column 44 should be on a new line. 239
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error whitespace ParenPad '(' is not followed by whitespace. 248
 Error whitespace ParenPad ')' is not preceded with whitespace. 248
 Error blocks LeftCurly '{' at column 33 should be on a new line. 248
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error blocks LeftCurly '{' at column 34 should be on a new line. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 251
 Error whitespace ParenPad ')' is not preceded with whitespace. 251
 Error whitespace ParenPad '(' is not followed by whitespace. 252
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error blocks LeftCurly '{' at column 73 should be on a new line. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 254
 Error whitespace ParenPad '(' is not followed by whitespace. 256
 Error whitespace ParenPad ')' is not preceded with whitespace. 256
 Error whitespace ParenPad '(' is not followed by whitespace. 257
 Error whitespace ParenPad ')' is not preceded with whitespace. 257
 Error whitespace ParenPad '(' is not followed by whitespace. 258
 Error whitespace ParenPad ')' is not preceded with whitespace. 258
 Error blocks LeftCurly '{' at column 49 should be on a new line. 258
 Error whitespace ParenPad '(' is not followed by whitespace. 260
 Error whitespace ParenPad ')' is not preceded with whitespace. 260
 Error whitespace ParenPad '(' is not followed by whitespace. 262
 Error whitespace ParenPad ')' is not preceded with whitespace. 262
 Error whitespace ParenPad '(' is not followed by whitespace. 263
 Error whitespace ParenPad ')' is not preceded with whitespace. 263
 Error whitespace ParenPad '(' is not followed by whitespace. 265
 Error whitespace ParenPad ')' is not preceded with whitespace. 265
 Error blocks LeftCurly '{' at column 89 should be on a new line. 265
 Error whitespace ParenPad '(' is not followed by whitespace. 267
 Error whitespace ParenPad ')' is not preceded with whitespace. 267
 Error whitespace ParenPad '(' is not followed by whitespace. 269
 Error whitespace ParenPad ')' is not preceded with whitespace. 269
 Error whitespace ParenPad '(' is not followed by whitespace. 270
 Error whitespace ParenPad ')' is not preceded with whitespace. 270
 Error whitespace ParenPad '(' is not followed by whitespace. 277
 Error naming LocalVariableName Name '_t' must match pattern '^[a-z][a-zA-Z0-9]*$'. 277
 Error whitespace ParenPad ')' is not preceded with whitespace. 277
 Error blocks LeftCurly '{' at column 40 should be on a new line. 277
 Error whitespace ParenPad '(' is not followed by whitespace. 278
 Error whitespace ParenPad ')' is not preceded with whitespace. 278
 Error javadoc JavadocMethod Missing a Javadoc comment. 282
 Error whitespace ParenPad '(' is not followed by whitespace. 282
 Error whitespace ParenPad ')' is not preceded with whitespace. 282
 Error blocks LeftCurly '{' at column 192 should be on a new line. 282
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with whitespace. 283
 Error blocks LeftCurly '{' at column 43 should be on a new line. 283
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 287
 Error whitespace ParenPad ')' is not preceded with whitespace. 287
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 291
 Error whitespace ParenPad '(' is not followed by whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad '(' is not followed by whitespace. 293
 Error whitespace ParenPad ')' is not preceded with whitespace. 293
 Error whitespace ParenPad '(' is not followed by whitespace. 294
 Error whitespace ParenPad ')' is not preceded with whitespace. 294
 Error blocks LeftCurly '{' at column 6 should be on a new line. 295
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace ParenPad ')' is not preceded with whitespace. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace ParenPad ')' is not preceded with whitespace. 295
 Error whitespace ParenPad ')' is not preceded with whitespace. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error blocks LeftCurly '{' at column 56 should be on a new line. 297
 Error blocks LeftCurly '{' at column 14 should be on a new line. 300
 Error whitespace ParenPad '(' is not followed by whitespace. 301
 Error whitespace ParenPad ')' is not preceded with whitespace. 301
 Error blocks LeftCurly '{' at column 17 should be on a new line. 302
 Error blocks RightCurly '}' at column 13 should be alone on a line. 304
 Error whitespace ParenPad '(' is not followed by whitespace. 304
 Error naming LocalVariableName Name '_exception' must match pattern '^[a-z][a-zA-Z0-9]*$'. 304
 Error whitespace ParenPad ')' is not preceded with whitespace. 304
 Error blocks LeftCurly '{' at column 54 should be on a new line. 304
 Error whitespace ParenPad '(' is not followed by whitespace. 305
 Error whitespace ParenPad ')' is not preceded with whitespace. 305
 Error blocks RightCurly '}' at column 3 should be alone on a line. 308
 Error whitespace ParenPad '(' is not followed by whitespace. 308
 Error whitespace ParenPad ')' is not preceded with whitespace. 308
 Error blocks LeftCurly '{' at column 58 should be on a new line. 308
 Error whitespace ParenPad '(' is not followed by whitespace. 309
 Error whitespace ParenPad ')' is not preceded with whitespace. 309
 Error blocks LeftCurly '{' at column 44 should be on a new line. 309
 Error whitespace ParenPad '(' is not followed by whitespace. 310
 Error whitespace ParenPad ')' is not preceded with whitespace. 310
 Error blocks LeftCurly '{' at column 76 should be on a new line. 310
 Error whitespace ParenPad '(' is not followed by whitespace. 313
 Error whitespace ParenPad ')' is not preceded with whitespace. 313
 Error blocks LeftCurly '{' at column 111 should be on a new line. 313
 Error javadoc JavadocMethod Missing a Javadoc comment. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error blocks LeftCurly '{' at column 376 should be on a new line. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 322
 Error whitespace ParenPad ')' is not preceded with whitespace. 322
 Error blocks LeftCurly '{' at column 43 should be on a new line. 322
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 325
 Error whitespace ParenPad '(' is not followed by whitespace. 326
 Error whitespace ParenPad ')' is not preceded with whitespace. 326
 Error whitespace ParenPad '(' is not followed by whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 327
 Error whitespace ParenPad '(' is not followed by whitespace. 328
 Error whitespace ParenPad ')' is not preceded with whitespace. 328
 Error whitespace ParenPad '(' is not followed by whitespace. 329
 Error whitespace ParenPad ')' is not preceded with whitespace. 329
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 330
 Error whitespace ParenPad '(' is not followed by whitespace. 332
 Error whitespace ParenPad ')' is not preceded with whitespace. 332
 Error whitespace ParenPad '(' is not followed by whitespace. 333
 Error whitespace ParenPad ')' is not preceded with whitespace. 333
 Error blocks LeftCurly '{' at column 6 should be on a new line. 334
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 334
 Error whitespace ParenPad '(' is not followed by whitespace. 334
 Error whitespace ParenPad '(' is not followed by whitespace. 334
 Error whitespace ParenPad ')' is not preceded with whitespace. 334
 Error whitespace ParenPad ')' is not preceded with whitespace. 334
 Error whitespace ParenPad '(' is not followed by whitespace. 336
 Error whitespace ParenPad ')' is not preceded with whitespace. 336
 Error blocks LeftCurly '{' at column 56 should be on a new line. 336
 Error blocks LeftCurly '{' at column 14 should be on a new line. 339
 Error whitespace ParenPad '(' is not followed by whitespace. 340
 Error whitespace ParenPad ')' is not preceded with whitespace. 340
 Error blocks LeftCurly '{' at column 17 should be on a new line. 341
 Error blocks RightCurly '}' at column 13 should be alone on a line. 343
 Error whitespace ParenPad '(' is not followed by whitespace. 343
 Error naming LocalVariableName Name '_exception' must match pattern '^[a-z][a-zA-Z0-9]*$'. 343
 Error whitespace ParenPad ')' is not preceded with whitespace. 343
 Error blocks LeftCurly '{' at column 54 should be on a new line. 343
 Error whitespace ParenPad '(' is not followed by whitespace. 344
 Error whitespace ParenPad ')' is not preceded with whitespace. 344
 Error blocks RightCurly '}' at column 3 should be alone on a line. 347
 Error whitespace ParenPad '(' is not followed by whitespace. 347
 Error whitespace ParenPad ')' is not preceded with whitespace. 347
 Error blocks LeftCurly '{' at column 58 should be on a new line. 347
 Error whitespace ParenPad '(' is not followed by whitespace. 348
 Error whitespace ParenPad ')' is not preceded with whitespace. 348
 Error blocks LeftCurly '{' at column 44 should be on a new line. 348
 Error whitespace ParenPad '(' is not followed by whitespace. 349
 Error whitespace ParenPad ')' is not preceded with whitespace. 349
 Error blocks LeftCurly '{' at column 76 should be on a new line. 349
 Error whitespace ParenPad '(' is not followed by whitespace. 352
 Error whitespace ParenPad ')' is not preceded with whitespace. 352
 Error blocks LeftCurly '{' at column 111 should be on a new line. 352
 Error javadoc JavadocMethod Missing a Javadoc comment. 360
 Error whitespace ParenPad '(' is not followed by whitespace. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 360
 Error blocks LeftCurly '{' at column 187 should be on a new line. 360
 Error whitespace ParenPad '(' is not followed by whitespace. 361
 Error whitespace ParenPad ')' is not preceded with whitespace. 361
 Error blocks LeftCurly '{' at column 43 should be on a new line. 361
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 364
 Error whitespace ParenPad '(' is not followed by whitespace. 365
 Error whitespace ParenPad ')' is not preceded with whitespace. 365
 Error whitespace ParenPad '(' is not followed by whitespace. 366
 Error whitespace ParenPad ')' is not preceded with whitespace. 366
 Error whitespace ParenPad '(' is not followed by whitespace. 367
 Error whitespace ParenPad ')' is not preceded with whitespace. 367
 Error whitespace ParenPad '(' is not followed by whitespace. 368
 Error whitespace ParenPad ')' is not preceded with whitespace. 368
 Error whitespace ParenPad '(' is not followed by whitespace. 369
 Error whitespace ParenPad '(' is not followed by whitespace. 369
 Error whitespace ParenPad ')' is not preceded with whitespace. 369
 Error whitespace ParenPad ')' is not preceded with whitespace. 369
 Error whitespace ParenPad '(' is not followed by whitespace. 371
 Error whitespace ParenPad ')' is not preceded with whitespace. 371
 Error whitespace ParenPad '(' is not followed by whitespace. 372
 Error whitespace ParenPad ')' is not preceded with whitespace. 372
 Error blocks LeftCurly '{' at column 6 should be on a new line. 373
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 373
 Error whitespace ParenPad ')' is not preceded with whitespace. 373
 Error whitespace ParenPad ')' is not preceded with whitespace. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 375
 Error whitespace ParenPad ')' is not preceded with whitespace. 375
 Error blocks LeftCurly '{' at column 56 should be on a new line. 375
 Error blocks LeftCurly '{' at column 14 should be on a new line. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 379
 Error whitespace ParenPad ')' is not preceded with whitespace. 379
 Error blocks LeftCurly '{' at column 17 should be on a new line. 380
 Error blocks RightCurly '}' at column 13 should be alone on a line. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 382
 Error naming LocalVariableName Name '_exception' must match pattern '^[a-z][a-zA-Z0-9]*$'. 382
 Error whitespace ParenPad ')' is not preceded with whitespace. 382
 Error blocks LeftCurly '{' at column 54 should be on a new line. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 383
 Error whitespace ParenPad ')' is not preceded with whitespace. 383
 Error blocks RightCurly '}' at column 3 should be alone on a line. 386
 Error whitespace ParenPad '(' is not followed by whitespace. 386
 Error whitespace ParenPad ')' is not preceded with whitespace. 386
 Error blocks LeftCurly '{' at column 58 should be on a new line. 386
 Error whitespace ParenPad '(' is not followed by whitespace. 387
 Error whitespace ParenPad ')' is not preceded with whitespace. 387
 Error blocks LeftCurly '{' at column 44 should be on a new line. 387
 Error whitespace ParenPad '(' is not followed by whitespace. 388
 Error whitespace ParenPad ')' is not preceded with whitespace. 388
 Error blocks LeftCurly '{' at column 76 should be on a new line. 388
 Error whitespace ParenPad '(' is not followed by whitespace. 391
 Error whitespace ParenPad ')' is not preceded with whitespace. 391
 Error blocks LeftCurly '{' at column 111 should be on a new line. 391

com/tvnavig/server/searchengine/service/common/AssetOGC.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 45
 Error blocks LeftCurly '{' at column 70 should be on a new line. 45
 Error naming MemberName Name 'assetId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 49
 Error naming MemberName Name 'creationDate' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 51
 Error naming MemberName Name 'description' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 53
 Error naming MemberName Name 'formats' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 55
 Error naming MemberName Name 'metaValues' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 57
 Error naming MemberName Name 'previewURL' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 59
 Error naming MemberName Name 'thumbnail' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 61
 Error naming MemberName Name 'title' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 63
 Error naming MemberName Name 'videoURL' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 65
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error blocks LeftCurly '{' at column 23 should be on a new line. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Warning sizes ParameterNumber More than 7 parameters (found 9). 70
 Error coding HiddenField 'assetId' hides a field. 71
 Error coding HiddenField 'creationDate' hides a field. 72
 Error coding HiddenField 'description' hides a field. 73
 Error coding HiddenField 'formats' hides a field. 74
 Error coding HiddenField 'metaValues' hides a field. 75
 Error coding HiddenField 'previewURL' hides a field. 76
 Error coding HiddenField 'thumbnail' hides a field. 77
 Error coding HiddenField 'title' hides a field. 78
 Error coding HiddenField 'videoURL' hides a field. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 Error blocks LeftCurly '{' at column 39 should be on a new line. 79
 Error blocks LeftCurly '{' at column 29 should be on a new line. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error coding HiddenField 'assetId' hides a field. 106
 Error javadoc JavadocMethod Expected @param tag for 'assetId'. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error blocks LeftCurly '{' at column 41 should be on a new line. 106
 Error blocks LeftCurly '{' at column 49 should be on a new line. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error coding HiddenField 'creationDate' hides a field. 126
 Error javadoc JavadocMethod Expected @param tag for 'creationDate'. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error blocks LeftCurly '{' at column 66 should be on a new line. 126
 Error blocks LeftCurly '{' at column 46 should be on a new line. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error coding HiddenField 'description' hides a field. 146
 Error javadoc JavadocMethod Expected @param tag for 'description'. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error blocks LeftCurly '{' at column 62 should be on a new line. 146
 Error blocks LeftCurly '{' at column 44 should be on a new line. 156
 Error whitespace ParenPad '(' is not followed by whitespace. 166
 Error coding HiddenField 'formats' hides a field. 166
 Error javadoc JavadocMethod Expected @param tag for 'formats'. 166
 Error whitespace ParenPad ')' is not preceded with whitespace. 166
 Error blocks LeftCurly '{' at column 56 should be on a new line. 166
 Error blocks LeftCurly '{' at column 86 should be on a new line. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error coding HiddenField 'metaValues' hides a field. 186
 Error javadoc JavadocMethod Expected @param tag for 'metaValues'. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error blocks LeftCurly '{' at column 101 should be on a new line. 186
 Error blocks LeftCurly '{' at column 45 should be on a new line. 196
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error coding HiddenField 'previewURL' hides a field. 206
 Error javadoc JavadocMethod Expected @param tag for 'previewURL'. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error blocks LeftCurly '{' at column 60 should be on a new line. 206
 Error blocks LeftCurly '{' at column 44 should be on a new line. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 226
 Error coding HiddenField 'thumbnail' hides a field. 226
 Error javadoc JavadocMethod Expected @param tag for 'thumbnail'. 226
 Error whitespace ParenPad ')' is not preceded with whitespace. 226
 Error blocks LeftCurly '{' at column 58 should be on a new line. 226
 Error blocks LeftCurly '{' at column 40 should be on a new line. 236
 Error whitespace ParenPad '(' is not followed by whitespace. 246
 Error coding HiddenField 'title' hides a field. 246
 Error javadoc JavadocMethod Expected @param tag for 'title'. 246
 Error whitespace ParenPad ')' is not preceded with whitespace. 246
 Error blocks LeftCurly '{' at column 50 should be on a new line. 246
 Error blocks LeftCurly '{' at column 43 should be on a new line. 256
 Error whitespace ParenPad '(' is not followed by whitespace. 266
 Error coding HiddenField 'videoURL' hides a field. 266
 Error javadoc JavadocMethod Expected @param tag for 'videoURL'. 266
 Error whitespace ParenPad ')' is not preceded with whitespace. 266
 Error blocks LeftCurly '{' at column 56 should be on a new line. 266
 Error coding DeclarationOrder Instance variable definition in wrong order. 270
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 270
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 270
 Error javadoc JavadocMethod Missing a Javadoc comment. 271
 Error whitespace ParenPad '(' is not followed by whitespace. 271
 Error whitespace ParenPad ')' is not preceded with whitespace. 271
 Error blocks LeftCurly '{' at column 62 should be on a new line. 271
 Error blocks NeedBraces 'if' construct must use '{}'s. 272
 Error whitespace ParenPad '(' is not followed by whitespace. 272
 Error whitespace ParenPad '(' is not followed by whitespace. 272
 Error whitespace ParenPad ')' is not preceded with whitespace. 272
 Error whitespace ParenPad ')' is not preceded with whitespace. 272
 Error blocks NeedBraces 'if' construct must use '{}'s. 274
 Error whitespace ParenPad '(' is not followed by whitespace. 274
 Error whitespace ParenPad ')' is not preceded with whitespace. 274
 Error blocks NeedBraces 'if' construct must use '{}'s. 275
 Error whitespace ParenPad '(' is not followed by whitespace. 275
 Error whitespace ParenPad ')' is not preceded with whitespace. 275
 Error whitespace ParenPad '(' is not followed by whitespace. 276
 Error whitespace ParenPad ')' is not preceded with whitespace. 276
 Error blocks LeftCurly '{' at column 35 should be on a new line. 276
 Error whitespace ParenPad '(' is not followed by whitespace. 277
 Error whitespace ParenPad ')' is not preceded with whitespace. 277
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 280
 Error coding SimplifyBooleanExpression Expression can be simplified. 281
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 283
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 283
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 283
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with whitespace. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 284
 Error whitespace ParenPad '(' is not followed by whitespace. 285
 Error whitespace ParenPad ')' is not preceded with whitespace. 285
 Error whitespace ParenPad ')' is not preceded with whitespace. 285
 Error whitespace ParenPad ')' is not preceded with whitespace. 285
 Error whitespace ParenPad '(' is not followed by whitespace. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 286
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 286
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 286
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 286
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 286
 Error whitespace ParenPad ')' is not preceded with whitespace. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 287
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 289
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 289
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 289
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad '(' is not followed by whitespace. 292
 Error whitespace ParenPad '(' is not followed by whitespace. 292
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 292
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 292
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 292
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 292
 Error whitespace ParenPad ')' is not preceded with whitespace. 292
 Error whitespace ParenPad '(' is not followed by whitespace. 293
 Error whitespace ParenPad '(' is not followed by whitespace. 294
 Error whitespace ParenPad ')' is not preceded with whitespace. 294
 Error whitespace ParenPad ')' is not preceded with whitespace. 294
 Error whitespace ParenPad ')' is not preceded with whitespace. 294
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 295
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 295
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 295
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 295
 Error whitespace ParenPad ')' is not preceded with whitespace. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 296
 Error whitespace ParenPad '(' is not followed by whitespace. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 298
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 298
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 298
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 298
 Error whitespace ParenPad ')' is not preceded with whitespace. 298
 Error whitespace ParenPad '(' is not followed by whitespace. 299
 Error whitespace ParenPad '(' is not followed by whitespace. 300
 Error whitespace ParenPad ')' is not preceded with whitespace. 300
 Error whitespace ParenPad ')' is not preceded with whitespace. 300
 Error whitespace ParenPad ')' is not preceded with whitespace. 300
 Error whitespace ParenPad '(' is not followed by whitespace. 301
 Error whitespace ParenPad '(' is not followed by whitespace. 301
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 301
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 301
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 301
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 301
 Error whitespace ParenPad ')' is not preceded with whitespace. 301
 Error whitespace ParenPad '(' is not followed by whitespace. 302
 Error whitespace ParenPad '(' is not followed by whitespace. 303
 Error whitespace ParenPad ')' is not preceded with whitespace. 303
 Error whitespace ParenPad ')' is not preceded with whitespace. 303
 Error whitespace ParenPad ')' is not preceded with whitespace. 303
 Error whitespace ParenPad '(' is not followed by whitespace. 304
 Error whitespace ParenPad '(' is not followed by whitespace. 304
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 304
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 304
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 304
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 304
 Error whitespace ParenPad ')' is not preceded with whitespace. 304
 Error whitespace ParenPad '(' is not followed by whitespace. 305
 Error whitespace ParenPad '(' is not followed by whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error coding DeclarationOrder Instance variable definition in wrong order. 311
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 311
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 311
 Error javadoc JavadocMethod Missing a Javadoc comment. 312
 Error blocks LeftCurly '{' at column 40 should be on a new line. 312
 Error whitespace ParenPad '(' is not followed by whitespace. 313
 Error whitespace ParenPad ')' is not preceded with whitespace. 313
 Error blocks LeftCurly '{' at column 29 should be on a new line. 313
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 317
 Error whitespace ParenPad '(' is not followed by whitespace. 319
 Error whitespace ParenPad ')' is not preceded with whitespace. 319
 Error blocks LeftCurly '{' at column 40 should be on a new line. 319
 Error whitespace ParenPad '(' is not followed by whitespace. 322
 Error whitespace ParenPad ')' is not preceded with whitespace. 322
 Error blocks LeftCurly '{' at column 39 should be on a new line. 322
 Error whitespace ParenPad '(' is not followed by whitespace. 325
 Error whitespace ParenPad ')' is not preceded with whitespace. 325
 Error blocks LeftCurly '{' at column 35 should be on a new line. 325
 Error whitespace ParenPad '(' is not followed by whitespace. 326
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 326
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 326
 Error whitespace ParenPad '(' is not followed by whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 328
 Error blocks LeftCurly '{' at column 23 should be on a new line. 328
 Error whitespace ParenPad '(' is not followed by whitespace. 329
 Error whitespace ParenPad ')' is not preceded with whitespace. 329
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 331
 Error blocks LeftCurly '{' at column 48 should be on a new line. 331
 Error whitespace ParenPad '(' is not followed by whitespace. 336
 Error whitespace ParenPad ')' is not preceded with whitespace. 336
 Error blocks LeftCurly '{' at column 38 should be on a new line. 336
 Error whitespace ParenPad '(' is not followed by whitespace. 337
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 337
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 337
 Error whitespace ParenPad '(' is not followed by whitespace. 338
 Error whitespace ParenPad ')' is not preceded with whitespace. 338
 Error whitespace ParenPad ')' is not preceded with whitespace. 339
 Error blocks LeftCurly '{' at column 23 should be on a new line. 339
 Error whitespace ParenPad '(' is not followed by whitespace. 340
 Error whitespace ParenPad ')' is not preceded with whitespace. 340
 Error whitespace ParenPad '(' is not followed by whitespace. 341
 Error whitespace ParenPad ')' is not preceded with whitespace. 342
 Error blocks LeftCurly '{' at column 48 should be on a new line. 342
 Error whitespace ParenPad '(' is not followed by whitespace. 347
 Error whitespace ParenPad ')' is not preceded with whitespace. 347
 Error blocks LeftCurly '{' at column 38 should be on a new line. 347
 Error whitespace ParenPad '(' is not followed by whitespace. 350
 Error whitespace ParenPad ')' is not preceded with whitespace. 350
 Error blocks LeftCurly '{' at column 37 should be on a new line. 350
 Error whitespace ParenPad '(' is not followed by whitespace. 353
 Error whitespace ParenPad ')' is not preceded with whitespace. 353
 Error blocks LeftCurly '{' at column 33 should be on a new line. 353
 Error whitespace ParenPad '(' is not followed by whitespace. 356
 Error whitespace ParenPad ')' is not preceded with whitespace. 356
 Error blocks LeftCurly '{' at column 36 should be on a new line. 356
 Error coding DeclarationOrder Static variable definition in wrong order. 364
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 364
 Error whitespace ParenPad '(' is not followed by whitespace. 365
 Error whitespace ParenPad ')' is not preceded with whitespace. 365
 Error blocks LeftCurly '{' at column 12 should be on a new line. 367
 Error whitespace ParenPad '(' is not followed by whitespace. 368
 Error whitespace ParenPad '(' is not followed by whitespace. 368
 Error whitespace ParenPad ')' is not preceded with whitespace. 368
 Error whitespace ParenPad ')' is not preceded with whitespace. 368
 Error whitespace ParenPad '(' is not followed by whitespace. 370
 Error whitespace ParenPad ')' is not preceded with whitespace. 370
 Error whitespace ParenPad '(' is not followed by whitespace. 371
 Error whitespace ParenPad '(' is not followed by whitespace. 371
 Error whitespace ParenPad ')' is not preceded with whitespace. 371
 Error whitespace ParenPad ')' is not preceded with whitespace. 371
 Error whitespace ParenPad '(' is not followed by whitespace. 372
 Error whitespace ParenPad '(' is not followed by whitespace. 372
 Error whitespace ParenPad ')' is not preceded with whitespace. 372
 Error whitespace ParenPad ')' is not preceded with whitespace. 372
 Error whitespace ParenPad '(' is not followed by whitespace. 373
 Error whitespace ParenPad ')' is not preceded with whitespace. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 374
 Error whitespace ParenPad ')' is not preceded with whitespace. 374
 Error whitespace ParenPad '(' is not followed by whitespace. 376
 Error whitespace ParenPad ')' is not preceded with whitespace. 376
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error whitespace ParenPad '(' is not followed by whitespace. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 378
 Error whitespace ParenPad ')' is not preceded with whitespace. 378
 Error whitespace ParenPad ')' is not preceded with whitespace. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 379
 Error whitespace ParenPad ')' is not preceded with whitespace. 379
 Error whitespace ParenPad '(' is not followed by whitespace. 380
 Error whitespace ParenPad ')' is not preceded with whitespace. 380
 Error whitespace ParenPad '(' is not followed by whitespace. 382
 Error whitespace ParenPad ')' is not preceded with whitespace. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 383
 Error whitespace ParenPad '(' is not followed by whitespace. 383
 Error whitespace ParenPad ')' is not preceded with whitespace. 383
 Error whitespace ParenPad ')' is not preceded with whitespace. 383
 Error whitespace ParenPad '(' is not followed by whitespace. 384
 Error whitespace ParenPad '(' is not followed by whitespace. 384
 Error whitespace ParenPad ')' is not preceded with whitespace. 384
 Error whitespace ParenPad ')' is not preceded with whitespace. 384
 Error whitespace ParenPad '(' is not followed by whitespace. 385
 Error whitespace ParenPad ')' is not preceded with whitespace. 385
 Error whitespace ParenPad '(' is not followed by whitespace. 386
 Error whitespace ParenPad ')' is not preceded with whitespace. 386
 Error whitespace ParenPad '(' is not followed by whitespace. 388
 Error whitespace ParenPad ')' is not preceded with whitespace. 388
 Error whitespace ParenPad '(' is not followed by whitespace. 389
 Error whitespace ParenPad '(' is not followed by whitespace. 389
 Error whitespace ParenPad ')' is not preceded with whitespace. 389
 Error whitespace ParenPad ')' is not preceded with whitespace. 389
 Error whitespace ParenPad '(' is not followed by whitespace. 390
 Error whitespace ParenPad '(' is not followed by whitespace. 390
 Error whitespace ParenPad ')' is not preceded with whitespace. 390
 Error whitespace ParenPad ')' is not preceded with whitespace. 390
 Error whitespace ParenPad '(' is not followed by whitespace. 391
 Error whitespace ParenPad ')' is not preceded with whitespace. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 392
 Error whitespace ParenPad ')' is not preceded with whitespace. 392
 Error whitespace ParenPad '(' is not followed by whitespace. 394
 Error whitespace ParenPad ')' is not preceded with whitespace. 394
 Error whitespace ParenPad '(' is not followed by whitespace. 395
 Error whitespace ParenPad '(' is not followed by whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 395
 Error whitespace ParenPad '(' is not followed by whitespace. 396
 Error whitespace ParenPad '(' is not followed by whitespace. 396
 Error whitespace ParenPad ')' is not preceded with whitespace. 396
 Error whitespace ParenPad ')' is not preceded with whitespace. 396
 Error whitespace ParenPad '(' is not followed by whitespace. 397
 Error whitespace ParenPad ')' is not preceded with whitespace. 397
 Error whitespace ParenPad '(' is not followed by whitespace. 398
 Error whitespace ParenPad ')' is not preceded with whitespace. 398
 Error whitespace ParenPad '(' is not followed by whitespace. 400
 Error whitespace ParenPad ')' is not preceded with whitespace. 400
 Error whitespace ParenPad '(' is not followed by whitespace. 401
 Error whitespace ParenPad '(' is not followed by whitespace. 401
 Error whitespace ParenPad ')' is not preceded with whitespace. 401
 Error whitespace ParenPad ')' is not preceded with whitespace. 401
 Error whitespace ParenPad '(' is not followed by whitespace. 402
 Error whitespace ParenPad '(' is not followed by whitespace. 402
 Error whitespace ParenPad ')' is not preceded with whitespace. 402
 Error whitespace ParenPad ')' is not preceded with whitespace. 402
 Error whitespace ParenPad '(' is not followed by whitespace. 403
 Error whitespace ParenPad ')' is not preceded with whitespace. 403
 Error whitespace ParenPad '(' is not followed by whitespace. 404
 Error whitespace ParenPad ')' is not preceded with whitespace. 404
 Error whitespace ParenPad '(' is not followed by whitespace. 406
 Error whitespace ParenPad ')' is not preceded with whitespace. 406
 Error whitespace ParenPad '(' is not followed by whitespace. 407
 Error whitespace ParenPad '(' is not followed by whitespace. 407
 Error whitespace ParenPad ')' is not preceded with whitespace. 407
 Error whitespace ParenPad ')' is not preceded with whitespace. 407
 Error whitespace ParenPad '(' is not followed by whitespace. 408
 Error whitespace ParenPad '(' is not followed by whitespace. 408
 Error whitespace ParenPad ')' is not preceded with whitespace. 408
 Error whitespace ParenPad ')' is not preceded with whitespace. 408
 Error whitespace ParenPad '(' is not followed by whitespace. 409
 Error whitespace ParenPad ')' is not preceded with whitespace. 409
 Error whitespace ParenPad '(' is not followed by whitespace. 410
 Error whitespace ParenPad ')' is not preceded with whitespace. 410
 Error whitespace ParenPad '(' is not followed by whitespace. 412
 Error whitespace ParenPad ')' is not preceded with whitespace. 412
 Error whitespace ParenPad '(' is not followed by whitespace. 413
 Error whitespace ParenPad '(' is not followed by whitespace. 413
 Error whitespace ParenPad ')' is not preceded with whitespace. 413
 Error whitespace ParenPad ')' is not preceded with whitespace. 413
 Error whitespace ParenPad '(' is not followed by whitespace. 414
 Error whitespace ParenPad '(' is not followed by whitespace. 414
 Error whitespace ParenPad ')' is not preceded with whitespace. 414
 Error whitespace ParenPad ')' is not preceded with whitespace. 414
 Error whitespace ParenPad '(' is not followed by whitespace. 415
 Error whitespace ParenPad ')' is not preceded with whitespace. 415
 Error whitespace ParenPad '(' is not followed by whitespace. 416
 Error whitespace ParenPad ')' is not preceded with whitespace. 416
 Error whitespace ParenPad '(' is not followed by whitespace. 418
 Error whitespace ParenPad ')' is not preceded with whitespace. 418
 Error whitespace ParenPad '(' is not followed by whitespace. 419
 Error whitespace ParenPad '(' is not followed by whitespace. 419
 Error whitespace ParenPad ')' is not preceded with whitespace. 419
 Error whitespace ParenPad ')' is not preceded with whitespace. 419
 Error whitespace ParenPad '(' is not followed by whitespace. 420
 Error whitespace ParenPad '(' is not followed by whitespace. 420
 Error whitespace ParenPad ')' is not preceded with whitespace. 420
 Error whitespace ParenPad ')' is not preceded with whitespace. 420
 Error whitespace ParenPad '(' is not followed by whitespace. 421
 Error whitespace ParenPad ')' is not preceded with whitespace. 421
 Error whitespace ParenPad '(' is not followed by whitespace. 422
 Error whitespace ParenPad ')' is not preceded with whitespace. 422
 Error javadoc JavadocMethod Expected an @return tag. 428
 Error blocks LeftCurly '{' at column 70 should be on a new line. 428
 Error javadoc JavadocMethod Expected an @return tag. 435
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 436
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 437
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 437
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 438
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 438
 Error whitespace ParenPad ')' is not preceded with whitespace. 438
 Error blocks LeftCurly '{' at column 48 should be on a new line. 438
 Error whitespace ParenPad ')' is not preceded with whitespace. 441
 Error javadoc JavadocMethod Expected an @return tag. 447
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 448
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 449
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 449
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 450
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 450
 Error whitespace ParenPad ')' is not preceded with whitespace. 450
 Error blocks LeftCurly '{' at column 48 should be on a new line. 450
 Error whitespace ParenPad ')' is not preceded with whitespace. 453
 Error javadoc JavadocMethod Missing a Javadoc comment. 456
 Error whitespace ParenPad '(' is not followed by whitespace. 456
 Error whitespace ParenPad ')' is not preceded with whitespace. 456

com/tvnavig/server/searchengine/service/common/AssetPlayer.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.searchengine.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 59 should be on a new line. 43
 Error naming MemberName Name 'htmlEmbed' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'thumbnail' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error blocks LeftCurly '{' at column 26 should be on a new line. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 51
 Error coding HiddenField 'htmlEmbed' hides a field. 52
 Error coding HiddenField 'thumbnail' hides a field. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' at column 40 should be on a new line. 53
 Error blocks LeftCurly '{' at column 44 should be on a new line. 64
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error coding HiddenField 'htmlEmbed' hides a field. 74
 Error javadoc JavadocMethod Expected @param tag for 'htmlEmbed'. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error blocks LeftCurly '{' at column 58 should be on a new line. 74
 Error blocks LeftCurly '{' at column 44 should be on a new line. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error coding HiddenField 'thumbnail' hides a field. 94
 Error javadoc JavadocMethod Expected @param tag for 'thumbnail'. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error blocks LeftCurly '{' at column 58 should be on a new line. 94
 Error coding DeclarationOrder Instance variable definition in wrong order. 98
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 98
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 98
 Error javadoc JavadocMethod Missing a Javadoc comment. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error whitespace ParenPad ')' is not preceded with whitespace. 99
 Error blocks LeftCurly '{' at column 62 should be on a new line. 99
 Error blocks NeedBraces 'if' construct must use '{}'s. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error blocks NeedBraces 'if' construct must use '{}'s. 102
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error blocks NeedBraces 'if' construct must use '{}'s. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error blocks LeftCurly '{' at column 35 should be on a new line. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 105
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 113
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 113
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 113
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error coding DeclarationOrder Instance variable definition in wrong order. 120
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 120
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 120
 Error javadoc JavadocMethod Missing a Javadoc comment. 121
 Error blocks LeftCurly '{' at column 40 should be on a new line. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error blocks LeftCurly '{' at column 29 should be on a new line. 122
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error blocks LeftCurly '{' at column 37 should be on a new line. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error blocks LeftCurly '{' at column 37 should be on a new line. 130
 Error coding DeclarationOrder Static variable definition in wrong order. 138
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error blocks LeftCurly '{' at column 12 should be on a new line. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 144
 Error whitespace ParenPad ')' is not preceded with whitespace. 144
 Error whitespace ParenPad '(' is not followed by whitespace. 145
 Error whitespace ParenPad '(' is not followed by whitespace. 145
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 147
 Error whitespace ParenPad ')' is not preceded with whitespace. 147
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 150
 Error whitespace ParenPad ')' is not preceded with whitespace. 150
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 152
 Error whitespace ParenPad ')' is not preceded with whitespace. 152
 Error whitespace ParenPad ')' is not preceded with whitespace. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error javadoc JavadocMethod Expected an @return tag. 160
 Error blocks LeftCurly '{' at column 70 should be on a new line. 160
 Error javadoc JavadocMethod Expected an @return tag. 167
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 168
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 169
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 169
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 170
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error blocks LeftCurly '{' at column 48 should be on a new line. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 173
 Error javadoc JavadocMethod Expected an @return tag. 179
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 180
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 181
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 181
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 182
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error blocks LeftCurly '{' at column 48 should be on a new line. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 185

com/tvnavig/server/user/UserService.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 54 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error modifier RedundantModifier Redundant 'public' modifier. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 45
 Error modifier RedundantModifier Redundant 'public' modifier. 45
 Error whitespace ParenPad '(' is not followed by whitespace. 45
 Error whitespace ParenPad ')' is not preceded with whitespace. 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error modifier RedundantModifier Redundant 'public' modifier. 46
 Error whitespace ParenPad '(' is not followed by whitespace. 46
 Error whitespace ParenPad ')' is not preceded with whitespace. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error modifier RedundantModifier Redundant 'public' modifier. 47
 Error whitespace ParenPad '(' is not followed by whitespace. 47
 Error whitespace ParenPad ')' is not preceded with whitespace. 47

com/tvnavig/server/user/UserServiceException.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 118 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error blocks LeftCurly '{' at column 35 should be on a new line. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error whitespace ParenPad ')' is not preceded with whitespace. 48
 Error blocks LeftCurly '{' at column 38 should be on a new line. 48
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error coding DeclarationOrder Instance variable definition in wrong order. 53
 Error design MutableException The field '__equalsCalc' must be declared final. 53
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 53
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 54
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error blocks LeftCurly '{' at column 62 should be on a new line. 54
 Error blocks NeedBraces 'if' construct must use '{}'s. 55
 Error whitespace ParenPad '(' is not followed by whitespace. 55
 Error whitespace ParenPad '(' is not followed by whitespace. 55
 Error whitespace ParenPad ')' is not preceded with whitespace. 55
 Error whitespace ParenPad ')' is not preceded with whitespace. 55
 Error blocks NeedBraces 'if' construct must use '{}'s. 57
 Error whitespace ParenPad '(' is not followed by whitespace. 57
 Error whitespace ParenPad ')' is not preceded with whitespace. 57
 Error blocks NeedBraces 'if' construct must use '{}'s. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 58
 Error whitespace ParenPad ')' is not preceded with whitespace. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 59
 Error whitespace ParenPad ')' is not preceded with whitespace. 59
 Error blocks LeftCurly '{' at column 35 should be on a new line. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 60
 Error whitespace ParenPad ')' is not preceded with whitespace. 60
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 64
 Error whitespace ParenPad ')' is not preceded with whitespace. 64
 Error coding DeclarationOrder Instance variable definition in wrong order. 69
 Error design MutableException The field '__hashCodeCalc' must be declared final. 69
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 69
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 69
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error blocks LeftCurly '{' at column 40 should be on a new line. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error blocks LeftCurly '{' at column 29 should be on a new line. 71
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 75
 Error coding DeclarationOrder Static variable definition in wrong order. 81
 Error design MutableException The field 'typeDesc' must be declared final. 81
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 81
 Error whitespace ParenPad '(' is not followed by whitespace. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error blocks LeftCurly '{' at column 12 should be on a new line. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error javadoc JavadocMethod Expected an @return tag. 91
 Error blocks LeftCurly '{' at column 70 should be on a new line. 91
 Error javadoc JavadocMethod Expected an @return tag. 98
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 99
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 100
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 100
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 101
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 101
 Error blocks LeftCurly '{' at column 48 should be on a new line. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error javadoc JavadocMethod Expected an @return tag. 110
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 111
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 112
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 112
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 113
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error blocks LeftCurly '{' at column 48 should be on a new line. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error javadoc JavadocMethod Expected @param tag for 'qname'. 123
 Error javadoc JavadocMethod Expected @param tag for 'context'. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error javadoc JavadocMethod Expected @throws tag for 'java.io.IOException'. 123
 Error blocks LeftCurly '{' at column 145 should be on a new line. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124

com/tvnavig/server/user/UserServiceService.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 67 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error modifier RedundantModifier Redundant 'public' modifier. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error modifier RedundantModifier Redundant 'public' modifier. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error modifier RedundantModifier Redundant 'public' modifier. 48
 Error whitespace ParenPad '(' is not followed by whitespace. 48
 Error whitespace ParenPad ')' is not preceded with whitespace. 48

com/tvnavig/server/user/UserServiceServiceLocator.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 133 should be on a new line. 43
 Error javadoc JavadocMethod Missing a Javadoc comment. 45
 Error blocks LeftCurly '{' at column 40 should be on a new line. 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 49
 Error whitespace ParenPad ')' is not preceded with whitespace. 49
 Error blocks LeftCurly '{' at column 82 should be on a new line. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' at column 135 should be on a new line. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error coding DeclarationOrder Instance variable definition in wrong order. 58
 Error naming MemberName Name 'UserService_address' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 60
 Error blocks LeftCurly '{' at column 53 should be on a new line. 60
 Error coding DeclarationOrder Instance variable definition in wrong order. 65
 Error naming MemberName Name 'UserServiceWSDDServiceName' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 65
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error blocks LeftCurly '{' at column 61 should be on a new line. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 71
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error blocks LeftCurly '{' at column 70 should be on a new line. 71
 Error javadoc JavadocMethod Missing a Javadoc comment. 75
 Error blocks LeftCurly '{' at column 103 should be on a new line. 75
 Error blocks LeftCurly '{' at column 13 should be on a new line. 77
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error blocks LeftCurly '{' at column 50 should be on a new line. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 81
 Error whitespace ParenPad ')' is not preceded with whitespace. 81
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error blocks LeftCurly '{' at column 127 should be on a new line. 86
 Error blocks LeftCurly '{' at column 13 should be on a new line. 87
 Error naming LocalVariableName Name '_stub' must match pattern '^[a-z][a-zA-Z0-9]*$'. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error blocks LeftCurly '{' at column 45 should be on a new line. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 97
 Error blocks LeftCurly '{' at column 73 should be on a new line. 97
 Error javadoc JavadocMethod Expected an @return tag. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error javadoc JavadocMethod Expected @param tag for 'serviceEndpointInterface'. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 106
 Error blocks LeftCurly '{' at column 106 should be on a new line. 106
 Error blocks LeftCurly '{' at column 13 should be on a new line. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error blocks LeftCurly '{' at column 103 should be on a new line. 108
 Error naming LocalVariableName Name '_stub' must match pattern '^[a-z][a-zA-Z0-9]*$'. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Error blocks LeftCurly '{' at column 39 should be on a new line. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error javadoc JavadocMethod Expected an @return tag. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error javadoc JavadocMethod Expected @param tag for 'portName'. 125
 Error javadoc JavadocMethod Expected @param tag for 'serviceEndpointInterface'. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 125
 Error blocks LeftCurly '{' at column 142 should be on a new line. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error blocks LeftCurly '{' at column 31 should be on a new line. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error blocks LeftCurly '{' at column 50 should be on a new line. 130
 Error blocks LeftCurly '{' at column 15 should be on a new line. 133
 Error naming LocalVariableName Name '_stub' must match pattern '^[a-z][a-zA-Z0-9]*$'. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad ')' is not preceded with whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error javadoc JavadocMethod Missing a Javadoc comment. 140
 Error blocks LeftCurly '{' at column 55 should be on a new line. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error whitespace ParenPad ')' is not preceded with whitespace. 141
 Error coding DeclarationOrder Instance variable definition in wrong order. 144
 Error naming MemberName Name 'ports' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 144
 Error coding ExplicitInitialization Variable 'ports' explicitly initialized to 'null' (default value for its type). 144
 Error javadoc JavadocMethod Missing a Javadoc comment. 146
 Error blocks LeftCurly '{' at column 42 should be on a new line. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 147
 Error whitespace ParenPad ')' is not preceded with whitespace. 147
 Error blocks LeftCurly '{' at column 28 should be on a new line. 147
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error javadoc JavadocMethod Expected @param tag for 'portName'. 157
 Error javadoc JavadocMethod Expected @param tag for 'address'. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 157
 Error blocks LeftCurly '{' at column 127 should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace ParenPad ')' is not preceded with whitespace. 159
 Error whitespace ParenPad ')' is not preceded with whitespace. 159
 Error blocks LeftCurly '{' at column 37 should be on a new line. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 171
 Error javadoc JavadocMethod Expected @param tag for 'portName'. 171
 Error javadoc JavadocMethod Expected @param tag for 'address'. 171
 Error whitespace ParenPad ')' is not preceded with whitespace. 171
 Error javadoc JavadocMethod Expected @throws tag for 'javax.xml.rpc.ServiceException'. 171
 Error blocks LeftCurly '{' at column 136 should be on a new line. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172

com/tvnavig/server/user/UserServiceSoapBindingStub.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 124 should be on a new line. 43
 Error naming MemberName Name 'cachedSerClasses' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'cachedSerQNames' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 45
 Error naming MemberName Name 'cachedSerFactories' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error naming MemberName Name 'cachedDeserFactories' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 47
 Error coding DeclarationOrder Static variable definition in wrong order. 49
 Error coding DeclarationOrder Variable access definition in wrong order. 49
 Error design VisibilityModifier Variable '_operations' must be private and have accessor methods. 49
 Error blocks LeftCurly '{' at column 12 should be on a new line. 51
 Error javadoc JavadocMethod Missing a Javadoc comment. 56
 Error naming MethodName Name '_initOperationDesc1' must match pattern '^[a-z][a-zA-Z0-9]*$'. 56
 Error blocks LeftCurly '{' at column 46 should be on a new line. 56
 Error whitespace ParenPad '(' is not followed by whitespace. 60
 Error whitespace ParenPad ')' is not preceded with whitespace. 60
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 62
 Error whitespace ParenPad ')' is not preceded with whitespace. 62
 Error whitespace ParenPad '(' is not followed by whitespace. 63
 Error whitespace ParenPad ')' is not preceded with whitespace. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 68
 Error whitespace ParenPad ')' is not preceded with whitespace. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 68
 Error whitespace ParenPad ')' is not preceded with whitespace. 68
 Error whitespace ParenPad ')' is not preceded with whitespace. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 69
 Error whitespace ParenPad ')' is not preceded with whitespace. 69
 Error whitespace ParenPad '(' is not followed by whitespace. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 70
 Error whitespace ParenPad ')' is not preceded with whitespace. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 70
 Error whitespace ParenPad ')' is not preceded with whitespace. 70
 Error whitespace ParenPad ')' is not preceded with whitespace. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error whitespace ParenPad '(' is not followed by whitespace. 72
 Error whitespace ParenPad '(' is not followed by whitespace. 72
 Error whitespace ParenPad ')' is not preceded with whitespace. 72
 Error whitespace ParenPad ')' is not preceded with whitespace. 72
 Error whitespace ParenPad '(' is not followed by whitespace. 73
 Error whitespace ParenPad ')' is not preceded with whitespace. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error whitespace ParenPad '(' is not followed by whitespace. 75
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 76
 Error whitespace ParenPad ')' is not preceded with whitespace. 76
 Error whitespace ParenPad '(' is not followed by whitespace. 77
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 90
 Error whitespace ParenPad ')' is not preceded with whitespace. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error whitespace ParenPad '(' is not followed by whitespace. 95
 Error whitespace ParenPad ')' is not preceded with whitespace. 95
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 105
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace ParenPad ')' is not preceded with whitespace. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 116
 Error coding DeclarationOrder Constructor definition in wrong order. 121
 Error javadoc JavadocMethod Missing a Javadoc comment. 121
 Error blocks LeftCurly '{' at column 74 should be on a new line. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error coding DeclarationOrder Constructor definition in wrong order. 125
 Error javadoc JavadocMethod Missing a Javadoc comment. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error blocks LeftCurly '{' at column 129 should be on a new line. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error coding DeclarationOrder Constructor definition in wrong order. 130
 Error javadoc JavadocMethod Missing a Javadoc comment. 130
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error blocks LeftCurly '{' at column 103 should be on a new line. 130
 Error whitespace ParenPad '(' is not followed by whitespace. 131
 Error whitespace ParenPad ')' is not preceded with whitespace. 131
 Error blocks LeftCurly '{' at column 30 should be on a new line. 131
 Error blocks RightCurly '}' at column 9 should be alone on a line. 133
 Error blocks LeftCurly '{' at column 16 should be on a new line. 133
 Error whitespace ParenPad '(' is not followed by whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 150
 Error whitespace ParenPad ')' is not preceded with whitespace. 150
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 155
 Error whitespace ParenPad ')' is not preceded with whitespace. 155
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 158
 Error whitespace ParenPad ')' is not preceded with whitespace. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error whitespace ParenPad '(' is not followed by whitespace. 167
 Error whitespace ParenPad ')' is not preceded with whitespace. 167
 Error whitespace ParenPad '(' is not followed by whitespace. 168
 Error whitespace ParenPad ')' is not preceded with whitespace. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error whitespace ParenPad '(' is not followed by whitespace. 171
 Error whitespace ParenPad ')' is not preceded with whitespace. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 178
 Error whitespace ParenPad ')' is not preceded with whitespace. 178
 Error whitespace ParenPad '(' is not followed by whitespace. 179
 Error whitespace ParenPad ')' is not preceded with whitespace. 179
 Error whitespace ParenPad '(' is not followed by whitespace. 181
 Error whitespace ParenPad ')' is not preceded with whitespace. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad ')' is not preceded with whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 189
 Error whitespace ParenPad ')' is not preceded with whitespace. 189
 Error whitespace ParenPad '(' is not followed by whitespace. 191
 Error whitespace ParenPad '(' is not followed by whitespace. 191
 Error whitespace ParenPad ')' is not preceded with whitespace. 191
 Error whitespace ParenPad ')' is not preceded with whitespace. 191
 Error whitespace ParenPad '(' is not followed by whitespace. 192
 Error whitespace ParenPad ')' is not preceded with whitespace. 192
 Error whitespace ParenPad '(' is not followed by whitespace. 194
 Error whitespace ParenPad ')' is not preceded with whitespace. 194
 Error whitespace ParenPad '(' is not followed by whitespace. 195
 Error whitespace ParenPad ')' is not preceded with whitespace. 195
 Error whitespace ParenPad '(' is not followed by whitespace. 197
 Error whitespace ParenPad ')' is not preceded with whitespace. 197
 Error whitespace ParenPad '(' is not followed by whitespace. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 200
 Error whitespace ParenPad '(' is not followed by whitespace. 200
 Error whitespace ParenPad ')' is not preceded with whitespace. 200
 Error whitespace ParenPad ')' is not preceded with whitespace. 200
 Error whitespace ParenPad '(' is not followed by whitespace. 201
 Error whitespace ParenPad ')' is not preceded with whitespace. 201
 Error whitespace ParenPad '(' is not followed by whitespace. 203
 Error whitespace ParenPad ')' is not preceded with whitespace. 203
 Error whitespace ParenPad '(' is not followed by whitespace. 204
 Error whitespace ParenPad ')' is not preceded with whitespace. 204
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 209
 Error whitespace ParenPad '(' is not followed by whitespace. 209
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error whitespace ParenPad '(' is not followed by whitespace. 212
 Error whitespace ParenPad ')' is not preceded with whitespace. 212
 Error whitespace ParenPad '(' is not followed by whitespace. 213
 Error whitespace ParenPad ')' is not preceded with whitespace. 213
 Error whitespace ParenPad '(' is not followed by whitespace. 215
 Error whitespace ParenPad ')' is not preceded with whitespace. 215
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 218
 Error whitespace ParenPad '(' is not followed by whitespace. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 221
 Error whitespace ParenPad ')' is not preceded with whitespace. 221
 Error whitespace ParenPad '(' is not followed by whitespace. 222
 Error whitespace ParenPad ')' is not preceded with whitespace. 222
 Error whitespace ParenPad '(' is not followed by whitespace. 224
 Error whitespace ParenPad ')' is not preceded with whitespace. 224
 Error whitespace ParenPad '(' is not followed by whitespace. 225
 Error whitespace ParenPad ')' is not preceded with whitespace. 225
 Error whitespace ParenPad '(' is not followed by whitespace. 226
 Error whitespace ParenPad ')' is not preceded with whitespace. 226
 Error whitespace ParenPad '(' is not followed by whitespace. 228
 Error whitespace ParenPad ')' is not preceded with whitespace. 228
 Error whitespace ParenPad '(' is not followed by whitespace. 229
 Error whitespace ParenPad ')' is not preceded with whitespace. 229
 Error whitespace ParenPad '(' is not followed by whitespace. 231
 Error whitespace ParenPad ')' is not preceded with whitespace. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error whitespace ParenPad ')' is not preceded with whitespace. 232
 Error whitespace ParenPad '(' is not followed by whitespace. 233
 Error whitespace ParenPad ')' is not preceded with whitespace. 233
 Error javadoc JavadocMethod Missing a Javadoc comment. 237
 Error blocks LeftCurly '{' at column 88 should be on a new line. 237
 Error blocks LeftCurly '{' at column 13 should be on a new line. 238
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 239
 Error whitespace ParenPad '(' is not followed by whitespace. 240
 Error whitespace ParenPad ')' is not preceded with whitespace. 240
 Error blocks LeftCurly '{' at column 43 should be on a new line. 240
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error whitespace ParenPad '(' is not followed by whitespace. 243
 Error whitespace ParenPad ')' is not preceded with whitespace. 243
 Error blocks LeftCurly '{' at column 47 should be on a new line. 243
 Error whitespace ParenPad '(' is not followed by whitespace. 244
 Error whitespace ParenPad ')' is not preceded with whitespace. 244
 Error whitespace ParenPad '(' is not followed by whitespace. 246
 Error whitespace ParenPad ')' is not preceded with whitespace. 246
 Error blocks LeftCurly '{' at column 47 should be on a new line. 246
 Error whitespace ParenPad '(' is not followed by whitespace. 247
 Error whitespace ParenPad ')' is not preceded with whitespace. 247
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error blocks LeftCurly '{' at column 47 should be on a new line. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 250
 Error whitespace ParenPad ')' is not preceded with whitespace. 250
 Error whitespace ParenPad '(' is not followed by whitespace. 252
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error blocks LeftCurly '{' at column 46 should be on a new line. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 255
 Error whitespace ParenPad ')' is not preceded with whitespace. 255
 Error blocks LeftCurly '{' at column 47 should be on a new line. 255
 Error whitespace ParenPad '(' is not followed by whitespace. 256
 Error whitespace ParenPad ')' is not preceded with whitespace. 256
 Error whitespace ParenPad '(' is not followed by whitespace. 259
 Error whitespace ParenPad ')' is not preceded with whitespace. 259
 Error blocks LeftCurly '{' at column 44 should be on a new line. 259
 Error whitespace ParenPad '(' is not followed by whitespace. 261
 Error whitespace ParenPad '(' is not followed by whitespace. 261
 Error whitespace ParenPad ')' is not preceded with whitespace. 261
 Error whitespace ParenPad ')' is not preceded with whitespace. 261
 Error whitespace ParenPad '(' is not followed by whitespace. 268
 Error whitespace ParenPad ')' is not preceded with whitespace. 268
 Error blocks LeftCurly '{' at column 33 should be on a new line. 268
 Error whitespace ParenPad '(' is not followed by whitespace. 269
 Error whitespace ParenPad ')' is not preceded with whitespace. 269
 Error blocks LeftCurly '{' at column 34 should be on a new line. 269
 Error whitespace ParenPad '(' is not followed by whitespace. 271
 Error whitespace ParenPad ')' is not preceded with whitespace. 271
 Error whitespace ParenPad '(' is not followed by whitespace. 272
 Error whitespace ParenPad ')' is not preceded with whitespace. 272
 Error whitespace ParenPad '(' is not followed by whitespace. 273
 Error whitespace ParenPad ')' is not preceded with whitespace. 273
 Error blocks LeftCurly '{' at column 73 should be on a new line. 273
 Error whitespace ParenPad '(' is not followed by whitespace. 274
 Error whitespace ParenPad ')' is not preceded with whitespace. 274
 Error whitespace ParenPad '(' is not followed by whitespace. 276
 Error whitespace ParenPad ')' is not preceded with whitespace. 276
 Error whitespace ParenPad '(' is not followed by whitespace. 277
 Error whitespace ParenPad ')' is not preceded with whitespace. 277
 Error whitespace ParenPad '(' is not followed by whitespace. 278
 Error whitespace ParenPad ')' is not preceded with whitespace. 278
 Error blocks LeftCurly '{' at column 49 should be on a new line. 278
 Error whitespace ParenPad '(' is not followed by whitespace. 280
 Error whitespace ParenPad ')' is not preceded with whitespace. 280
 Error whitespace ParenPad '(' is not followed by whitespace. 282
 Error whitespace ParenPad ')' is not preceded with whitespace. 282
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with whitespace. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 285
 Error whitespace ParenPad ')' is not preceded with whitespace. 285
 Error blocks LeftCurly '{' at column 89 should be on a new line. 285
 Error whitespace ParenPad '(' is not followed by whitespace. 287
 Error whitespace ParenPad ')' is not preceded with whitespace. 287
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 297
 Error naming LocalVariableName Name '_t' must match pattern '^[a-z][a-zA-Z0-9]*$'. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error blocks LeftCurly '{' at column 40 should be on a new line. 297
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error whitespace ParenPad ')' is not preceded with whitespace. 298
 Error javadoc JavadocMethod Missing a Javadoc comment. 302
 Error blocks LeftCurly '{' at column 59 should be on a new line. 302
 Error whitespace ParenPad '(' is not followed by whitespace. 303
 Error whitespace ParenPad ')' is not preceded with whitespace. 303
 Error blocks LeftCurly '{' at column 43 should be on a new line. 303
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 306
 Error whitespace ParenPad '(' is not followed by whitespace. 307
 Error whitespace ParenPad ')' is not preceded with whitespace. 307
 Error whitespace ParenPad '(' is not followed by whitespace. 308
 Error whitespace ParenPad ')' is not preceded with whitespace. 308
 Error whitespace ParenPad '(' is not followed by whitespace. 309
 Error whitespace ParenPad ')' is not preceded with whitespace. 309
 Error whitespace ParenPad '(' is not followed by whitespace. 310
 Error whitespace ParenPad ')' is not preceded with whitespace. 310
 Error whitespace ParenPad '(' is not followed by whitespace. 311
 Error whitespace ParenPad '(' is not followed by whitespace. 311
 Error whitespace ParenPad ')' is not preceded with whitespace. 311
 Error whitespace ParenPad ')' is not preceded with whitespace. 311
 Error whitespace ParenPad '(' is not followed by whitespace. 313
 Error whitespace ParenPad ')' is not preceded with whitespace. 313
 Error whitespace ParenPad '(' is not followed by whitespace. 314
 Error whitespace ParenPad ')' is not preceded with whitespace. 314
 Error blocks LeftCurly '{' at column 6 should be on a new line. 315
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 315
 Error whitespace ParenPad '(' is not followed by whitespace. 315
 Error whitespace ParenPad ')' is not preceded with whitespace. 315
 Error whitespace ParenPad '(' is not followed by whitespace. 317
 Error whitespace ParenPad ')' is not preceded with whitespace. 317
 Error blocks LeftCurly '{' at column 56 should be on a new line. 317
 Error whitespace ParenPad '(' is not followed by whitespace. 320
 Error whitespace ParenPad ')' is not preceded with whitespace. 320
 Error blocks RightCurly '}' at column 3 should be alone on a line. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error blocks LeftCurly '{' at column 58 should be on a new line. 321
 Error javadoc JavadocMethod Missing a Javadoc comment. 326
 Error whitespace ParenPad '(' is not followed by whitespace. 326
 Error whitespace ParenPad ')' is not preceded with whitespace. 326
 Error blocks LeftCurly '{' at column 211 should be on a new line. 326
 Error whitespace ParenPad '(' is not followed by whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 327
 Error blocks LeftCurly '{' at column 43 should be on a new line. 327
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 330
 Error whitespace ParenPad '(' is not followed by whitespace. 331
 Error whitespace ParenPad ')' is not preceded with whitespace. 331
 Error whitespace ParenPad '(' is not followed by whitespace. 332
 Error whitespace ParenPad ')' is not preceded with whitespace. 332
 Error whitespace ParenPad '(' is not followed by whitespace. 333
 Error whitespace ParenPad ')' is not preceded with whitespace. 333
 Error whitespace ParenPad '(' is not followed by whitespace. 334
 Error whitespace ParenPad ')' is not preceded with whitespace. 334
 Error whitespace ParenPad '(' is not followed by whitespace. 335
 Error whitespace ParenPad '(' is not followed by whitespace. 335
 Error whitespace ParenPad ')' is not preceded with whitespace. 335
 Error whitespace ParenPad ')' is not preceded with whitespace. 335
 Error whitespace ParenPad '(' is not followed by whitespace. 337
 Error whitespace ParenPad ')' is not preceded with whitespace. 337
 Error whitespace ParenPad '(' is not followed by whitespace. 338
 Error whitespace ParenPad ')' is not preceded with whitespace. 338
 Error blocks LeftCurly '{' at column 6 should be on a new line. 339
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 339
 Error whitespace ParenPad '(' is not followed by whitespace. 339
 Error whitespace ParenPad ')' is not preceded with whitespace. 339
 Error whitespace ParenPad '(' is not followed by whitespace. 341
 Error whitespace ParenPad ')' is not preceded with whitespace. 341
 Error blocks LeftCurly '{' at column 56 should be on a new line. 341
 Error blocks LeftCurly '{' at column 14 should be on a new line. 344
 Error whitespace ParenPad '(' is not followed by whitespace. 345
 Error whitespace ParenPad ')' is not preceded with whitespace. 345
 Error blocks LeftCurly '{' at column 17 should be on a new line. 346
 Error blocks RightCurly '}' at column 13 should be alone on a line. 348
 Error whitespace ParenPad '(' is not followed by whitespace. 348
 Error naming LocalVariableName Name '_exception' must match pattern '^[a-z][a-zA-Z0-9]*$'. 348
 Error whitespace ParenPad ')' is not preceded with whitespace. 348
 Error blocks LeftCurly '{' at column 54 should be on a new line. 348
 Error whitespace ParenPad '(' is not followed by whitespace. 349
 Error whitespace ParenPad ')' is not preceded with whitespace. 349
 Error blocks RightCurly '}' at column 3 should be alone on a line. 352
 Error whitespace ParenPad '(' is not followed by whitespace. 352
 Error whitespace ParenPad ')' is not preceded with whitespace. 352
 Error blocks LeftCurly '{' at column 58 should be on a new line. 352
 Error whitespace ParenPad '(' is not followed by whitespace. 353
 Error whitespace ParenPad ')' is not preceded with whitespace. 353
 Error blocks LeftCurly '{' at column 44 should be on a new line. 353
 Error whitespace ParenPad '(' is not followed by whitespace. 354
 Error whitespace ParenPad ')' is not preceded with whitespace. 354
 Error blocks LeftCurly '{' at column 76 should be on a new line. 354
 Error whitespace ParenPad '(' is not followed by whitespace. 357
 Error whitespace ParenPad ')' is not preceded with whitespace. 357
 Error blocks LeftCurly '{' at column 96 should be on a new line. 357
 Error javadoc JavadocMethod Missing a Javadoc comment. 365
 Error whitespace ParenPad '(' is not followed by whitespace. 365
 Error whitespace ParenPad ')' is not preceded with whitespace. 365
 Error blocks LeftCurly '{' at column 179 should be on a new line. 365
 Error whitespace ParenPad '(' is not followed by whitespace. 366
 Error whitespace ParenPad ')' is not preceded with whitespace. 366
 Error blocks LeftCurly '{' at column 43 should be on a new line. 366
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 369
 Error whitespace ParenPad '(' is not followed by whitespace. 370
 Error whitespace ParenPad ')' is not preceded with whitespace. 370
 Error whitespace ParenPad '(' is not followed by whitespace. 371
 Error whitespace ParenPad ')' is not preceded with whitespace. 371
 Error whitespace ParenPad '(' is not followed by whitespace. 372
 Error whitespace ParenPad ')' is not preceded with whitespace. 372
 Error whitespace ParenPad '(' is not followed by whitespace. 373
 Error whitespace ParenPad ')' is not preceded with whitespace. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 374
 Error whitespace ParenPad '(' is not followed by whitespace. 374
 Error whitespace ParenPad ')' is not preceded with whitespace. 374
 Error whitespace ParenPad ')' is not preceded with whitespace. 374
 Error whitespace ParenPad '(' is not followed by whitespace. 376
 Error whitespace ParenPad ')' is not preceded with whitespace. 376
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error blocks LeftCurly '{' at column 6 should be on a new line. 378
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 378
 Error whitespace ParenPad ')' is not preceded with whitespace. 378
 Error whitespace ParenPad ')' is not preceded with whitespace. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 380
 Error whitespace ParenPad ')' is not preceded with whitespace. 380
 Error blocks LeftCurly '{' at column 56 should be on a new line. 380
 Error blocks LeftCurly '{' at column 14 should be on a new line. 383
 Error whitespace ParenPad '(' is not followed by whitespace. 384
 Error whitespace ParenPad ')' is not preceded with whitespace. 384
 Error blocks LeftCurly '{' at column 17 should be on a new line. 385
 Error blocks RightCurly '}' at column 13 should be alone on a line. 387
 Error whitespace ParenPad '(' is not followed by whitespace. 387
 Error naming LocalVariableName Name '_exception' must match pattern '^[a-z][a-zA-Z0-9]*$'. 387
 Error whitespace ParenPad ')' is not preceded with whitespace. 387
 Error blocks LeftCurly '{' at column 54 should be on a new line. 387
 Error whitespace ParenPad '(' is not followed by whitespace. 388
 Error whitespace ParenPad ')' is not preceded with whitespace. 388
 Error blocks RightCurly '}' at column 3 should be alone on a line. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 391
 Error whitespace ParenPad ')' is not preceded with whitespace. 391
 Error blocks LeftCurly '{' at column 58 should be on a new line. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 392
 Error whitespace ParenPad ')' is not preceded with whitespace. 392
 Error blocks LeftCurly '{' at column 44 should be on a new line. 392
 Error whitespace ParenPad '(' is not followed by whitespace. 393
 Error whitespace ParenPad ')' is not preceded with whitespace. 393
 Error blocks LeftCurly '{' at column 76 should be on a new line. 393
 Error whitespace ParenPad '(' is not followed by whitespace. 396
 Error whitespace ParenPad ')' is not preceded with whitespace. 396
 Error blocks LeftCurly '{' at column 96 should be on a new line. 396
 Error javadoc JavadocMethod Missing a Javadoc comment. 404
 Error whitespace ParenPad '(' is not followed by whitespace. 404
 Error whitespace ParenPad ')' is not preceded with whitespace. 404
 Error blocks LeftCurly '{' at column 202 should be on a new line. 404
 Error whitespace ParenPad '(' is not followed by whitespace. 405
 Error whitespace ParenPad ')' is not preceded with whitespace. 405
 Error blocks LeftCurly '{' at column 43 should be on a new line. 405
 Error naming LocalVariableName Name '_call' must match pattern '^[a-z][a-zA-Z0-9]*$'. 408
 Error whitespace ParenPad '(' is not followed by whitespace. 409
 Error whitespace ParenPad ')' is not preceded with whitespace. 409
 Error whitespace ParenPad '(' is not followed by whitespace. 410
 Error whitespace ParenPad ')' is not preceded with whitespace. 410
 Error whitespace ParenPad '(' is not followed by whitespace. 411
 Error whitespace ParenPad ')' is not preceded with whitespace. 411
 Error whitespace ParenPad '(' is not followed by whitespace. 412
 Error whitespace ParenPad ')' is not preceded with whitespace. 412
 Error whitespace ParenPad '(' is not followed by whitespace. 413
 Error whitespace ParenPad '(' is not followed by whitespace. 413
 Error whitespace ParenPad ')' is not preceded with whitespace. 413
 Error whitespace ParenPad ')' is not preceded with whitespace. 413
 Error whitespace ParenPad '(' is not followed by whitespace. 415
 Error whitespace ParenPad ')' is not preceded with whitespace. 415
 Error whitespace ParenPad '(' is not followed by whitespace. 416
 Error whitespace ParenPad ')' is not preceded with whitespace. 416
 Error blocks LeftCurly '{' at column 6 should be on a new line. 417
 Error naming LocalVariableName Name '_resp' must match pattern '^[a-z][a-zA-Z0-9]*$'. 417
 Error whitespace ParenPad '(' is not followed by whitespace. 417
 Error whitespace ParenPad '(' is not followed by whitespace. 417
 Error whitespace ParenPad ')' is not preceded with whitespace. 417
 Error whitespace ParenPad ')' is not preceded with whitespace. 417
 Error whitespace ParenPad '(' is not followed by whitespace. 419
 Error whitespace ParenPad ')' is not preceded with whitespace. 419
 Error blocks LeftCurly '{' at column 56 should be on a new line. 419
 Error blocks LeftCurly '{' at column 14 should be on a new line. 422
 Error whitespace ParenPad '(' is not followed by whitespace. 423
 Error whitespace ParenPad ')' is not preceded with whitespace. 423
 Error blocks LeftCurly '{' at column 17 should be on a new line. 424
 Error blocks RightCurly '}' at column 13 should be alone on a line. 426
 Error whitespace ParenPad '(' is not followed by whitespace. 426
 Error naming LocalVariableName Name '_exception' must match pattern '^[a-z][a-zA-Z0-9]*$'. 426
 Error whitespace ParenPad ')' is not preceded with whitespace. 426
 Error blocks LeftCurly '{' at column 54 should be on a new line. 426
 Error whitespace ParenPad '(' is not followed by whitespace. 427
 Error whitespace ParenPad ')' is not preceded with whitespace. 427
 Error blocks RightCurly '}' at column 3 should be alone on a line. 430
 Error whitespace ParenPad '(' is not followed by whitespace. 430
 Error whitespace ParenPad ')' is not preceded with whitespace. 430
 Error blocks LeftCurly '{' at column 58 should be on a new line. 430
 Error whitespace ParenPad '(' is not followed by whitespace. 431
 Error whitespace ParenPad ')' is not preceded with whitespace. 431
 Error blocks LeftCurly '{' at column 44 should be on a new line. 431
 Error whitespace ParenPad '(' is not followed by whitespace. 432
 Error whitespace ParenPad ')' is not preceded with whitespace. 432
 Error blocks LeftCurly '{' at column 76 should be on a new line. 432
 Error whitespace ParenPad '(' is not followed by whitespace. 435
 Error whitespace ParenPad ')' is not preceded with whitespace. 435
 Error blocks LeftCurly '{' at column 96 should be on a new line. 435

com/tvnavig/server/user/service/common/MetaDataResult.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 62 should be on a new line. 43
 Error naming MemberName Name 'metadataId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'name' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error naming MemberName Name 'type' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 48
 Error naming MemberName Name 'valueList' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error blocks LeftCurly '{' at column 29 should be on a new line. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 55
 Error coding HiddenField 'metadataId' hides a field. 56
 Error coding HiddenField 'name' hides a field. 57
 Error coding HiddenField 'type' hides a field. 58
 Error coding HiddenField 'valueList' hides a field. 59
 Error whitespace ParenPad ')' is not preceded with whitespace. 59
 Error blocks LeftCurly '{' at column 42 should be on a new line. 59
 Error blocks LeftCurly '{' at column 32 should be on a new line. 72
 Error whitespace ParenPad '(' is not followed by whitespace. 82
 Error coding HiddenField 'metadataId' hides a field. 82
 Error javadoc JavadocMethod Expected @param tag for 'metadataId'. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error blocks LeftCurly '{' at column 47 should be on a new line. 82
 Error blocks LeftCurly '{' at column 39 should be on a new line. 92
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error coding HiddenField 'name' hides a field. 102
 Error javadoc JavadocMethod Expected @param tag for 'name'. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error blocks LeftCurly '{' at column 48 should be on a new line. 102
 Error blocks LeftCurly '{' at column 26 should be on a new line. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error coding HiddenField 'type' hides a field. 122
 Error javadoc JavadocMethod Expected @param tag for 'type'. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error blocks LeftCurly '{' at column 35 should be on a new line. 122
 Error blocks LeftCurly '{' at column 46 should be on a new line. 132
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error coding HiddenField 'valueList' hides a field. 142
 Error javadoc JavadocMethod Expected @param tag for 'valueList'. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error blocks LeftCurly '{' at column 60 should be on a new line. 142
 Error coding DeclarationOrder Instance variable definition in wrong order. 146
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 146
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 146
 Error javadoc JavadocMethod Missing a Javadoc comment. 147
 Error whitespace ParenPad '(' is not followed by whitespace. 147
 Error whitespace ParenPad ')' is not preceded with whitespace. 147
 Error blocks LeftCurly '{' at column 62 should be on a new line. 147
 Error blocks NeedBraces 'if' construct must use '{}'s. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error blocks NeedBraces 'if' construct must use '{}'s. 150
 Error whitespace ParenPad '(' is not followed by whitespace. 150
 Error whitespace ParenPad ')' is not preceded with whitespace. 150
 Error blocks NeedBraces 'if' construct must use '{}'s. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 152
 Error whitespace ParenPad ')' is not preceded with whitespace. 152
 Error blocks LeftCurly '{' at column 35 should be on a new line. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 156
 Error coding SimplifyBooleanExpression Expression can be simplified. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 159
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 159
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 159
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 159
 Error whitespace ParenPad ')' is not preceded with whitespace. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 163
 Error whitespace ParenPad '(' is not followed by whitespace. 163
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 163
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 163
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 163
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 163
 Error whitespace ParenPad ')' is not preceded with whitespace. 163
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error coding DeclarationOrder Instance variable definition in wrong order. 170
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 170
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 170
 Error javadoc JavadocMethod Missing a Javadoc comment. 171
 Error blocks LeftCurly '{' at column 40 should be on a new line. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error blocks LeftCurly '{' at column 29 should be on a new line. 172
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 178
 Error whitespace ParenPad ')' is not preceded with whitespace. 178
 Error blocks LeftCurly '{' at column 32 should be on a new line. 178
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error blocks LeftCurly '{' at column 37 should be on a new line. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 183
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error blocks LeftCurly '{' at column 23 should be on a new line. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error blocks LeftCurly '{' at column 48 should be on a new line. 188
 Error coding DeclarationOrder Static variable definition in wrong order. 198
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 199
 Error whitespace ParenPad ')' is not preceded with whitespace. 199
 Error blocks LeftCurly '{' at column 12 should be on a new line. 201
 Error whitespace ParenPad '(' is not followed by whitespace. 202
 Error whitespace ParenPad '(' is not followed by whitespace. 202
 Error whitespace ParenPad ')' is not preceded with whitespace. 202
 Error whitespace ParenPad ')' is not preceded with whitespace. 202
 Error whitespace ParenPad '(' is not followed by whitespace. 204
 Error whitespace ParenPad ')' is not preceded with whitespace. 204
 Error whitespace ParenPad '(' is not followed by whitespace. 205
 Error whitespace ParenPad '(' is not followed by whitespace. 205
 Error whitespace ParenPad ')' is not preceded with whitespace. 205
 Error whitespace ParenPad ')' is not preceded with whitespace. 205
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 208
 Error whitespace ParenPad ')' is not preceded with whitespace. 208
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error whitespace ParenPad '(' is not followed by whitespace. 211
 Error whitespace ParenPad '(' is not followed by whitespace. 211
 Error whitespace ParenPad ')' is not preceded with whitespace. 211
 Error whitespace ParenPad ')' is not preceded with whitespace. 211
 Error whitespace ParenPad '(' is not followed by whitespace. 212
 Error whitespace ParenPad '(' is not followed by whitespace. 212
 Error whitespace ParenPad ')' is not preceded with whitespace. 212
 Error whitespace ParenPad ')' is not preceded with whitespace. 212
 Error whitespace ParenPad '(' is not followed by whitespace. 213
 Error whitespace ParenPad ')' is not preceded with whitespace. 213
 Error whitespace ParenPad '(' is not followed by whitespace. 214
 Error whitespace ParenPad ')' is not preceded with whitespace. 214
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error whitespace ParenPad '(' is not followed by whitespace. 218
 Error whitespace ParenPad '(' is not followed by whitespace. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 220
 Error whitespace ParenPad ')' is not preceded with whitespace. 220
 Error whitespace ParenPad '(' is not followed by whitespace. 222
 Error whitespace ParenPad ')' is not preceded with whitespace. 222
 Error whitespace ParenPad '(' is not followed by whitespace. 223
 Error whitespace ParenPad '(' is not followed by whitespace. 223
 Error whitespace ParenPad ')' is not preceded with whitespace. 223
 Error whitespace ParenPad ')' is not preceded with whitespace. 223
 Error whitespace ParenPad '(' is not followed by whitespace. 224
 Error whitespace ParenPad '(' is not followed by whitespace. 224
 Error whitespace ParenPad ')' is not preceded with whitespace. 224
 Error whitespace ParenPad ')' is not preceded with whitespace. 224
 Error whitespace ParenPad '(' is not followed by whitespace. 225
 Error whitespace ParenPad ')' is not preceded with whitespace. 225
 Error whitespace ParenPad '(' is not followed by whitespace. 226
 Error whitespace ParenPad ')' is not preceded with whitespace. 226
 Error javadoc JavadocMethod Expected an @return tag. 232
 Error blocks LeftCurly '{' at column 70 should be on a new line. 232
 Error javadoc JavadocMethod Expected an @return tag. 239
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 240
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 241
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 241
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 242
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 242
 Error whitespace ParenPad ')' is not preceded with whitespace. 242
 Error blocks LeftCurly '{' at column 48 should be on a new line. 242
 Error whitespace ParenPad ')' is not preceded with whitespace. 245
 Error javadoc JavadocMethod Expected an @return tag. 251
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 252
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 253
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 253
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 254
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 254
 Error blocks LeftCurly '{' at column 48 should be on a new line. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 257

com/tvnavig/server/user/service/common/UserDomainResult.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 64 should be on a new line. 43
 Error naming MemberName Name 'id' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'name' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error blocks LeftCurly '{' at column 31 should be on a new line. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 51
 Error coding HiddenField 'id' hides a field. 52
 Error coding HiddenField 'name' hides a field. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' at column 35 should be on a new line. 53
 Error blocks LeftCurly '{' at column 38 should be on a new line. 64
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error coding HiddenField 'id' hides a field. 74
 Error javadoc JavadocMethod Expected @param tag for 'id'. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error blocks LeftCurly '{' at column 45 should be on a new line. 74
 Error blocks LeftCurly '{' at column 39 should be on a new line. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error coding HiddenField 'name' hides a field. 94
 Error javadoc JavadocMethod Expected @param tag for 'name'. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error blocks LeftCurly '{' at column 48 should be on a new line. 94
 Error coding DeclarationOrder Instance variable definition in wrong order. 98
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 98
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 98
 Error javadoc JavadocMethod Missing a Javadoc comment. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error whitespace ParenPad ')' is not preceded with whitespace. 99
 Error blocks LeftCurly '{' at column 62 should be on a new line. 99
 Error blocks NeedBraces 'if' construct must use '{}'s. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error blocks NeedBraces 'if' construct must use '{}'s. 102
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error blocks NeedBraces 'if' construct must use '{}'s. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error blocks LeftCurly '{' at column 35 should be on a new line. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 105
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 113
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 113
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 113
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error coding DeclarationOrder Instance variable definition in wrong order. 120
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 120
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 120
 Error javadoc JavadocMethod Missing a Javadoc comment. 121
 Error blocks LeftCurly '{' at column 40 should be on a new line. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error blocks LeftCurly '{' at column 29 should be on a new line. 122
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error blocks LeftCurly '{' at column 30 should be on a new line. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error blocks LeftCurly '{' at column 32 should be on a new line. 130
 Error coding DeclarationOrder Static variable definition in wrong order. 138
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error blocks LeftCurly '{' at column 12 should be on a new line. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 144
 Error whitespace ParenPad ')' is not preceded with whitespace. 144
 Error whitespace ParenPad '(' is not followed by whitespace. 145
 Error whitespace ParenPad '(' is not followed by whitespace. 145
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 147
 Error whitespace ParenPad ')' is not preceded with whitespace. 147
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 150
 Error whitespace ParenPad ')' is not preceded with whitespace. 150
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 152
 Error whitespace ParenPad ')' is not preceded with whitespace. 152
 Error whitespace ParenPad ')' is not preceded with whitespace. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error javadoc JavadocMethod Expected an @return tag. 160
 Error blocks LeftCurly '{' at column 70 should be on a new line. 160
 Error javadoc JavadocMethod Expected an @return tag. 167
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 168
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 169
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 169
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 170
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error blocks LeftCurly '{' at column 48 should be on a new line. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 173
 Error javadoc JavadocMethod Expected an @return tag. 179
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 180
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 181
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 181
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 182
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error blocks LeftCurly '{' at column 48 should be on a new line. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 185

com/tvnavig/server/user/service/common/UserGroupResult.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 63 should be on a new line. 43
 Error naming MemberName Name 'description' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'groupId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error naming MemberName Name 'name' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 50
 Error blocks LeftCurly '{' at column 30 should be on a new line. 50
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error coding HiddenField 'description' hides a field. 54
 Error coding HiddenField 'groupId' hides a field. 55
 Error coding HiddenField 'name' hides a field. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error blocks LeftCurly '{' at column 35 should be on a new line. 56
 Error blocks LeftCurly '{' at column 46 should be on a new line. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error coding HiddenField 'description' hides a field. 78
 Error javadoc JavadocMethod Expected @param tag for 'description'. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error blocks LeftCurly '{' at column 62 should be on a new line. 78
 Error blocks LeftCurly '{' at column 43 should be on a new line. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 98
 Error coding HiddenField 'groupId' hides a field. 98
 Error javadoc JavadocMethod Expected @param tag for 'groupId'. 98
 Error whitespace ParenPad ')' is not preceded with whitespace. 98
 Error blocks LeftCurly '{' at column 55 should be on a new line. 98
 Error blocks LeftCurly '{' at column 39 should be on a new line. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 118
 Error coding HiddenField 'name' hides a field. 118
 Error javadoc JavadocMethod Expected @param tag for 'name'. 118
 Error whitespace ParenPad ')' is not preceded with whitespace. 118
 Error blocks LeftCurly '{' at column 48 should be on a new line. 118
 Error coding DeclarationOrder Instance variable definition in wrong order. 122
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 122
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 122
 Error javadoc JavadocMethod Missing a Javadoc comment. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error blocks LeftCurly '{' at column 62 should be on a new line. 123
 Error blocks NeedBraces 'if' construct must use '{}'s. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error blocks NeedBraces 'if' construct must use '{}'s. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error blocks NeedBraces 'if' construct must use '{}'s. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128
 Error blocks LeftCurly '{' at column 35 should be on a new line. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 129
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 132
 Error coding SimplifyBooleanExpression Expression can be simplified. 133
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 134
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 134
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 134
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 134
 Error whitespace ParenPad ')' is not preceded with whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad '(' is not followed by whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 137
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 137
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 137
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 137
 Error whitespace ParenPad ')' is not preceded with whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 140
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 140
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 140
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error coding DeclarationOrder Instance variable definition in wrong order. 147
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 147
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 147
 Error javadoc JavadocMethod Missing a Javadoc comment. 148
 Error blocks LeftCurly '{' at column 40 should be on a new line. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error blocks LeftCurly '{' at column 29 should be on a new line. 149
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error blocks LeftCurly '{' at column 39 should be on a new line. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error blocks LeftCurly '{' at column 35 should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error blocks LeftCurly '{' at column 32 should be on a new line. 160
 Error coding DeclarationOrder Static variable definition in wrong order. 168
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error blocks LeftCurly '{' at column 12 should be on a new line. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 177
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error whitespace ParenPad '(' is not followed by whitespace. 178
 Error whitespace ParenPad ')' is not preceded with whitespace. 178
 Error whitespace ParenPad '(' is not followed by whitespace. 180
 Error whitespace ParenPad ')' is not preceded with whitespace. 180
 Error whitespace ParenPad '(' is not followed by whitespace. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 181
 Error whitespace ParenPad ')' is not preceded with whitespace. 181
 Error whitespace ParenPad ')' is not preceded with whitespace. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad ')' is not preceded with whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 189
 Error whitespace ParenPad ')' is not preceded with whitespace. 189
 Error whitespace ParenPad '(' is not followed by whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error javadoc JavadocMethod Expected an @return tag. 196
 Error blocks LeftCurly '{' at column 70 should be on a new line. 196
 Error javadoc JavadocMethod Expected an @return tag. 203
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 204
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 205
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 205
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 206
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error blocks LeftCurly '{' at column 48 should be on a new line. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error javadoc JavadocMethod Expected an @return tag. 215
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 216
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 217
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 217
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 218
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error blocks LeftCurly '{' at column 48 should be on a new line. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 221

com/tvnavig/server/user/service/common/UserGroupandMetaDataResult.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 74 should be on a new line. 43
 Error naming MemberName Name 'metaDataList' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'userGroupList' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 48
 Error blocks LeftCurly '{' at column 41 should be on a new line. 48
 Error javadoc JavadocMethod Missing a Javadoc comment. 51
 Error coding HiddenField 'metaDataList' hides a field. 52
 Error coding HiddenField 'userGroupList' hides a field. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' at column 84 should be on a new line. 53
 Error blocks LeftCurly '{' at column 86 should be on a new line. 64
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error coding HiddenField 'metaDataList' hides a field. 74
 Error javadoc JavadocMethod Expected @param tag for 'metaDataList'. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error blocks LeftCurly '{' at column 103 should be on a new line. 74
 Error blocks LeftCurly '{' at column 88 should be on a new line. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error coding HiddenField 'userGroupList' hides a field. 94
 Error javadoc JavadocMethod Expected @param tag for 'userGroupList'. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error blocks LeftCurly '{' at column 106 should be on a new line. 94
 Error coding DeclarationOrder Instance variable definition in wrong order. 98
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 98
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 98
 Error javadoc JavadocMethod Missing a Javadoc comment. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error whitespace ParenPad ')' is not preceded with whitespace. 99
 Error blocks LeftCurly '{' at column 62 should be on a new line. 99
 Error blocks NeedBraces 'if' construct must use '{}'s. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error blocks NeedBraces 'if' construct must use '{}'s. 102
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error blocks NeedBraces 'if' construct must use '{}'s. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error blocks LeftCurly '{' at column 35 should be on a new line. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 105
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 110
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 110
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 113
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 113
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 113
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error coding DeclarationOrder Instance variable definition in wrong order. 120
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 120
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 120
 Error javadoc JavadocMethod Missing a Javadoc comment. 121
 Error blocks LeftCurly '{' at column 40 should be on a new line. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error blocks LeftCurly '{' at column 29 should be on a new line. 122
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error blocks LeftCurly '{' at column 40 should be on a new line. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 128
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error blocks LeftCurly '{' at column 23 should be on a new line. 130
 Error whitespace ParenPad '(' is not followed by whitespace. 131
 Error whitespace ParenPad ')' is not preceded with whitespace. 131
 Error whitespace ParenPad '(' is not followed by whitespace. 132
 Error whitespace ParenPad ')' is not preceded with whitespace. 133
 Error blocks LeftCurly '{' at column 48 should be on a new line. 133
 Error whitespace ParenPad '(' is not followed by whitespace. 138
 Error whitespace ParenPad ')' is not preceded with whitespace. 138
 Error blocks LeftCurly '{' at column 41 should be on a new line. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 139
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 141
 Error blocks LeftCurly '{' at column 23 should be on a new line. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 143
 Error whitespace ParenPad ')' is not preceded with whitespace. 144
 Error blocks LeftCurly '{' at column 48 should be on a new line. 144
 Error coding DeclarationOrder Static variable definition in wrong order. 154
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 155
 Error whitespace ParenPad ')' is not preceded with whitespace. 155
 Error blocks LeftCurly '{' at column 12 should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 158
 Error whitespace ParenPad ')' is not preceded with whitespace. 158
 Error whitespace ParenPad ')' is not preceded with whitespace. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 163
 Error whitespace ParenPad ')' is not preceded with whitespace. 163
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 166
 Error whitespace ParenPad ')' is not preceded with whitespace. 166
 Error whitespace ParenPad '(' is not followed by whitespace. 167
 Error whitespace ParenPad '(' is not followed by whitespace. 167
 Error whitespace ParenPad ')' is not preceded with whitespace. 167
 Error whitespace ParenPad ')' is not preceded with whitespace. 167
 Error whitespace ParenPad '(' is not followed by whitespace. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 168
 Error whitespace ParenPad ')' is not preceded with whitespace. 168
 Error whitespace ParenPad ')' is not preceded with whitespace. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error whitespace ParenPad '(' is not followed by whitespace. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error javadoc JavadocMethod Expected an @return tag. 176
 Error blocks LeftCurly '{' at column 70 should be on a new line. 176
 Error javadoc JavadocMethod Expected an @return tag. 183
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 184
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 185
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 185
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 186
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error blocks LeftCurly '{' at column 48 should be on a new line. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 189
 Error javadoc JavadocMethod Expected an @return tag. 195
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 196
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 197
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 197
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 198
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error blocks LeftCurly '{' at column 48 should be on a new line. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 201

com/tvnavig/server/user/service/common/UserServiceResult.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.user.service.common' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 65 should be on a new line. 43
 Error naming MemberName Name 'email' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error naming MemberName Name 'firstName' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error naming MemberName Name 'lastName' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 48
 Error naming MemberName Name 'login' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 50
 Error naming MemberName Name 'userId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 54
 Error blocks LeftCurly '{' at column 32 should be on a new line. 54
 Error javadoc JavadocMethod Missing a Javadoc comment. 57
 Error coding HiddenField 'email' hides a field. 58
 Error coding HiddenField 'firstName' hides a field. 59
 Error coding HiddenField 'lastName' hides a field. 60
 Error coding HiddenField 'login' hides a field. 61
 Error coding HiddenField 'userId' hides a field. 62
 Error whitespace ParenPad ')' is not preceded with whitespace. 62
 Error blocks LeftCurly '{' at column 38 should be on a new line. 62
 Error blocks LeftCurly '{' at column 40 should be on a new line. 76
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error coding HiddenField 'email' hides a field. 86
 Error javadoc JavadocMethod Expected @param tag for 'email'. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error blocks LeftCurly '{' at column 50 should be on a new line. 86
 Error blocks LeftCurly '{' at column 44 should be on a new line. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error coding HiddenField 'firstName' hides a field. 106
 Error javadoc JavadocMethod Expected @param tag for 'firstName'. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error blocks LeftCurly '{' at column 58 should be on a new line. 106
 Error blocks LeftCurly '{' at column 43 should be on a new line. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error coding HiddenField 'lastName' hides a field. 126
 Error javadoc JavadocMethod Expected @param tag for 'lastName'. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error blocks LeftCurly '{' at column 56 should be on a new line. 126
 Error blocks LeftCurly '{' at column 40 should be on a new line. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error coding HiddenField 'login' hides a field. 146
 Error javadoc JavadocMethod Expected @param tag for 'login'. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error blocks LeftCurly '{' at column 50 should be on a new line. 146
 Error blocks LeftCurly '{' at column 42 should be on a new line. 156
 Error whitespace ParenPad '(' is not followed by whitespace. 166
 Error coding HiddenField 'userId' hides a field. 166
 Error javadoc JavadocMethod Expected @param tag for 'userId'. 166
 Error whitespace ParenPad ')' is not preceded with whitespace. 166
 Error blocks LeftCurly '{' at column 53 should be on a new line. 166
 Error coding DeclarationOrder Instance variable definition in wrong order. 170
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 170
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 170
 Error javadoc JavadocMethod Missing a Javadoc comment. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 171
 Error whitespace ParenPad ')' is not preceded with whitespace. 171
 Error blocks LeftCurly '{' at column 62 should be on a new line. 171
 Error blocks NeedBraces 'if' construct must use '{}'s. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error blocks NeedBraces 'if' construct must use '{}'s. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error blocks NeedBraces 'if' construct must use '{}'s. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error blocks LeftCurly '{' at column 35 should be on a new line. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 177
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 180
 Error coding SimplifyBooleanExpression Expression can be simplified. 181
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 182
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 182
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 182
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 185
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 185
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 185
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 185
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 188
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 188
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 188
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 188
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 188
 Error whitespace ParenPad ')' is not preceded with whitespace. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 189
 Error whitespace ParenPad '(' is not followed by whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error whitespace ParenPad '(' is not followed by whitespace. 191
 Error whitespace ParenPad '(' is not followed by whitespace. 191
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 191
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 191
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 191
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 191
 Error whitespace ParenPad ')' is not preceded with whitespace. 191
 Error whitespace ParenPad '(' is not followed by whitespace. 192
 Error whitespace ParenPad '(' is not followed by whitespace. 193
 Error whitespace ParenPad ')' is not preceded with whitespace. 193
 Error whitespace ParenPad ')' is not preceded with whitespace. 193
 Error whitespace ParenPad ')' is not preceded with whitespace. 193
 Error whitespace ParenPad '(' is not followed by whitespace. 194
 Error whitespace ParenPad '(' is not followed by whitespace. 194
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 194
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 194
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 194
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 194
 Error whitespace ParenPad ')' is not preceded with whitespace. 194
 Error whitespace ParenPad '(' is not followed by whitespace. 195
 Error whitespace ParenPad '(' is not followed by whitespace. 196
 Error whitespace ParenPad ')' is not preceded with whitespace. 196
 Error whitespace ParenPad ')' is not preceded with whitespace. 196
 Error whitespace ParenPad ')' is not preceded with whitespace. 196
 Error coding DeclarationOrder Instance variable definition in wrong order. 201
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 201
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 201
 Error javadoc JavadocMethod Missing a Javadoc comment. 202
 Error blocks LeftCurly '{' at column 40 should be on a new line. 202
 Error whitespace ParenPad '(' is not followed by whitespace. 203
 Error whitespace ParenPad ')' is not preceded with whitespace. 203
 Error blocks LeftCurly '{' at column 29 should be on a new line. 203
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 208
 Error whitespace ParenPad ')' is not preceded with whitespace. 208
 Error blocks LeftCurly '{' at column 33 should be on a new line. 208
 Error whitespace ParenPad '(' is not followed by whitespace. 211
 Error whitespace ParenPad ')' is not preceded with whitespace. 211
 Error blocks LeftCurly '{' at column 37 should be on a new line. 211
 Error whitespace ParenPad '(' is not followed by whitespace. 214
 Error whitespace ParenPad ')' is not preceded with whitespace. 214
 Error blocks LeftCurly '{' at column 36 should be on a new line. 214
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error blocks LeftCurly '{' at column 33 should be on a new line. 217
 Error whitespace ParenPad '(' is not followed by whitespace. 220
 Error whitespace ParenPad ')' is not preceded with whitespace. 220
 Error blocks LeftCurly '{' at column 34 should be on a new line. 220
 Error coding DeclarationOrder Static variable definition in wrong order. 228
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 228
 Error whitespace ParenPad '(' is not followed by whitespace. 229
 Error whitespace ParenPad ')' is not preceded with whitespace. 229
 Error blocks LeftCurly '{' at column 12 should be on a new line. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error whitespace ParenPad ')' is not preceded with whitespace. 232
 Error whitespace ParenPad ')' is not preceded with whitespace. 232
 Error whitespace ParenPad '(' is not followed by whitespace. 234
 Error whitespace ParenPad ')' is not preceded with whitespace. 234
 Error whitespace ParenPad '(' is not followed by whitespace. 235
 Error whitespace ParenPad '(' is not followed by whitespace. 235
 Error whitespace ParenPad ')' is not preceded with whitespace. 235
 Error whitespace ParenPad ')' is not preceded with whitespace. 235
 Error whitespace ParenPad '(' is not followed by whitespace. 236
 Error whitespace ParenPad '(' is not followed by whitespace. 236
 Error whitespace ParenPad ')' is not preceded with whitespace. 236
 Error whitespace ParenPad ')' is not preceded with whitespace. 236
 Error whitespace ParenPad '(' is not followed by whitespace. 237
 Error whitespace ParenPad ')' is not preceded with whitespace. 237
 Error whitespace ParenPad '(' is not followed by whitespace. 238
 Error whitespace ParenPad ')' is not preceded with whitespace. 238
 Error whitespace ParenPad '(' is not followed by whitespace. 240
 Error whitespace ParenPad ')' is not preceded with whitespace. 240
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error whitespace ParenPad '(' is not followed by whitespace. 242
 Error whitespace ParenPad '(' is not followed by whitespace. 242
 Error whitespace ParenPad ')' is not preceded with whitespace. 242
 Error whitespace ParenPad ')' is not preceded with whitespace. 242
 Error whitespace ParenPad '(' is not followed by whitespace. 243
 Error whitespace ParenPad ')' is not preceded with whitespace. 243
 Error whitespace ParenPad '(' is not followed by whitespace. 244
 Error whitespace ParenPad ')' is not preceded with whitespace. 244
 Error whitespace ParenPad '(' is not followed by whitespace. 246
 Error whitespace ParenPad ')' is not preceded with whitespace. 246
 Error whitespace ParenPad '(' is not followed by whitespace. 247
 Error whitespace ParenPad '(' is not followed by whitespace. 247
 Error whitespace ParenPad ')' is not preceded with whitespace. 247
 Error whitespace ParenPad ')' is not preceded with whitespace. 247
 Error whitespace ParenPad '(' is not followed by whitespace. 248
 Error whitespace ParenPad '(' is not followed by whitespace. 248
 Error whitespace ParenPad ')' is not preceded with whitespace. 248
 Error whitespace ParenPad ')' is not preceded with whitespace. 248
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 250
 Error whitespace ParenPad ')' is not preceded with whitespace. 250
 Error whitespace ParenPad '(' is not followed by whitespace. 252
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 254
 Error whitespace ParenPad '(' is not followed by whitespace. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 254
 Error whitespace ParenPad '(' is not followed by whitespace. 255
 Error whitespace ParenPad ')' is not preceded with whitespace. 255
 Error whitespace ParenPad '(' is not followed by whitespace. 256
 Error whitespace ParenPad ')' is not preceded with whitespace. 256
 Error whitespace ParenPad '(' is not followed by whitespace. 258
 Error whitespace ParenPad ')' is not preceded with whitespace. 258
 Error whitespace ParenPad '(' is not followed by whitespace. 259
 Error whitespace ParenPad '(' is not followed by whitespace. 259
 Error whitespace ParenPad ')' is not preceded with whitespace. 259
 Error whitespace ParenPad ')' is not preceded with whitespace. 259
 Error whitespace ParenPad '(' is not followed by whitespace. 260
 Error whitespace ParenPad '(' is not followed by whitespace. 260
 Error whitespace ParenPad ')' is not preceded with whitespace. 260
 Error whitespace ParenPad ')' is not preceded with whitespace. 260
 Error whitespace ParenPad '(' is not followed by whitespace. 261
 Error whitespace ParenPad ')' is not preceded with whitespace. 261
 Error whitespace ParenPad '(' is not followed by whitespace. 262
 Error whitespace ParenPad ')' is not preceded with whitespace. 262
 Error javadoc JavadocMethod Expected an @return tag. 268
 Error blocks LeftCurly '{' at column 70 should be on a new line. 268
 Error javadoc JavadocMethod Expected an @return tag. 275
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 276
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 277
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 277
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 278
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 278
 Error whitespace ParenPad ')' is not preceded with whitespace. 278
 Error blocks LeftCurly '{' at column 48 should be on a new line. 278
 Error whitespace ParenPad ')' is not preceded with whitespace. 281
 Error javadoc JavadocMethod Expected an @return tag. 287
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 288
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 289
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 289
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 290
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error blocks LeftCurly '{' at column 48 should be on a new line. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 293

com/tvnavig/server/util/ServiceException.java

Severity Category Rule Message Line
 Error naming PackageName Name 'com.tvnavig.server.util' must match pattern '^fr\.paris\.[a-z][a-z0-9\.]*$'. 41
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 99 should be on a new line. 43
 Error naming MemberName Name 'error' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error blocks LeftCurly '{' at column 31 should be on a new line. 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error coding HiddenField 'error' hides a field. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error blocks LeftCurly '{' at column 38 should be on a new line. 50
 Error blocks LeftCurly '{' at column 42 should be on a new line. 60
 Error whitespace ParenPad '(' is not followed by whitespace. 70
 Error coding HiddenField 'error' hides a field. 70
 Error javadoc JavadocMethod Expected @param tag for 'error'. 70
 Error whitespace ParenPad ')' is not preceded with whitespace. 70
 Error blocks LeftCurly '{' at column 52 should be on a new line. 70
 Error coding DeclarationOrder Instance variable definition in wrong order. 74
 Error naming MemberName Name '__equalsCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 74
 Error coding ExplicitInitialization Variable '__equalsCalc' explicitly initialized to 'null' (default value for its type). 74
 Error javadoc JavadocMethod Missing a Javadoc comment. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 75
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error blocks LeftCurly '{' at column 62 should be on a new line. 75
 Error blocks NeedBraces 'if' construct must use '{}'s. 76
 Error whitespace ParenPad '(' is not followed by whitespace. 76
 Error whitespace ParenPad '(' is not followed by whitespace. 76
 Error whitespace ParenPad ')' is not preceded with whitespace. 76
 Error whitespace ParenPad ')' is not preceded with whitespace. 76
 Error blocks NeedBraces 'if' construct must use '{}'s. 78
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error blocks NeedBraces 'if' construct must use '{}'s. 79
 Error whitespace ParenPad '(' is not followed by whitespace. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error blocks LeftCurly '{' at column 35 should be on a new line. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 81
 Error whitespace ParenPad ')' is not preceded with whitespace. 81
 Error naming LocalVariableName Name '_equals' must match pattern '^[a-z][a-zA-Z0-9]*$'. 84
 Error coding SimplifyBooleanExpression Expression can be simplified. 85
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 86
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 86
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 86
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error coding DeclarationOrder Instance variable definition in wrong order. 93
 Error naming MemberName Name '__hashCodeCalc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 93
 Error coding ExplicitInitialization Variable '__hashCodeCalc' explicitly initialized to 'false' (default value for its type). 93
 Error javadoc JavadocMethod Missing a Javadoc comment. 94
 Error blocks LeftCurly '{' at column 40 should be on a new line. 94
 Error whitespace ParenPad '(' is not followed by whitespace. 95
 Error whitespace ParenPad ')' is not preceded with whitespace. 95
 Error blocks LeftCurly '{' at column 29 should be on a new line. 95
 Error naming LocalVariableName Name '_hashCode' must match pattern '^[a-z][a-zA-Z0-9]*$'. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error blocks LeftCurly '{' at column 33 should be on a new line. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 101
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 101
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 101
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error blocks LeftCurly '{' at column 23 should be on a new line. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error blocks LeftCurly '{' at column 48 should be on a new line. 106
 Error coding DeclarationOrder Static variable definition in wrong order. 116
 Error naming StaticVariableName Name 'typeDesc' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error blocks LeftCurly '{' at column 12 should be on a new line. 119
 Error whitespace ParenPad '(' is not followed by whitespace. 120
 Error whitespace ParenPad '(' is not followed by whitespace. 120
 Error whitespace ParenPad ')' is not preceded with whitespace. 120
 Error whitespace ParenPad ')' is not preceded with whitespace. 120
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error javadoc JavadocMethod Expected an @return tag. 132
 Error blocks LeftCurly '{' at column 70 should be on a new line. 132
 Error javadoc JavadocMethod Expected an @return tag. 139
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 140
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 141
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 141
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 142
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error blocks LeftCurly '{' at column 48 should be on a new line. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error javadoc JavadocMethod Expected an @return tag. 151
 Error javadoc JavadocMethod Expected @param tag for 'mechType'. 152
 Error javadoc JavadocMethod Expected @param tag for '_javaType'. 153
 Error naming ParameterName Name '_javaType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 153
 Error javadoc JavadocMethod Expected @param tag for '_xmlType'. 154
 Error naming ParameterName Name '_xmlType' must match pattern '^[a-z][a-zA-Z0-9]*$'. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error blocks LeftCurly '{' at column 48 should be on a new line. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 164
 Error javadoc JavadocMethod Expected @param tag for 'qname'. 164
 Error javadoc JavadocMethod Expected @param tag for 'context'. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 Error javadoc JavadocMethod Expected @throws tag for 'java.io.IOException'. 164
 Error blocks LeftCurly '{' at column 145 should be on a new line. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165

fr/paris/lutece/plugins/parisvideo/business/IParisVideoDAO.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Unused @param tag for 'ParisVideoAccount'. 48
 Error javadoc JavadocMethod Expected @param tag for 'ParisVideo'. 51
 Error naming ParameterName Name 'ParisVideo' must match pattern '^[a-z][a-zA-Z0-9]*$'. 51
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error javadoc JavadocMethod Unused @param tag for 'nParisVideoId'. 57

fr/paris/lutece/plugins/parisvideo/business/ParisVideoAccount.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 54
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error blocks NeedBraces 'if' construct must use '{}'s. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error blocks NeedBraces 'else' construct must use '{}'s. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 72
 Error blocks NeedBraces 'if' construct must use '{}'s. 74
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error blocks NeedBraces 'else' construct must use '{}'s. 76
 Error javadoc JavadocMethod Missing a Javadoc comment. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error javadoc JavadocMethod Missing a Javadoc comment. 85
 Error blocks NeedBraces 'if' construct must use '{}'s. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error blocks NeedBraces 'else' construct must use '{}'s. 89
 Error javadoc JavadocMethod Missing a Javadoc comment. 93
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93

fr/paris/lutece/plugins/parisvideo/business/ParisVideoDAO.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Missing a Javadoc comment. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128

fr/paris/lutece/plugins/parisvideo/business/ParisVideoHome.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 49

fr/paris/lutece/plugins/parisvideo/service/ParisvideoService.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod Expected an @return tag. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 70
 Error javadoc JavadocMethod Expected @param tag for 'login'. 70
 Error javadoc JavadocMethod Expected @param tag for 'password'. 70
 Error whitespace ParenPad ')' is not preceded with whitespace. 70
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 70
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error whitespace ParenPad '(' is not followed by whitespace. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 Error whitespace ParenPad '(' is not followed by whitespace. 95
 Error javadoc JavadocMethod Expected @param tag for 'searchSubject'. 95
 Error javadoc JavadocMethod Expected @param tag for 'metaValues'. 95
 Error javadoc JavadocMethod Expected @param tag for 'beginDate'. 95
 Error javadoc JavadocMethod Expected @param tag for 'endDate'. 95
 Error javadoc JavadocMethod Expected @param tag for 'format'. 95
 Error whitespace ParenPad ')' is not preceded with whitespace. 95
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 95
 Error whitespace ParenPad '(' is not followed by whitespace. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 101
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error javadoc JavadocMethod Expected an @return tag. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error javadoc JavadocMethod Expected @param tag for 'videoId'. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 110

fr/paris/lutece/plugins/parisvideo/service/SingleSessionHttpTransport.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 43
 Error blocks LeftCurly '{' at column 63 should be on a new line. 43
 Error naming StaticVariableName Name 'uniqueCookie1' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 45
 Error coding ExplicitInitialization Variable 'uniqueCookie1' explicitly initialized to 'null' (default value for its type). 45
 Error naming StaticVariableName Name 'uniqueCookie2' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 46
 Error coding ExplicitInitialization Variable 'uniqueCookie2' explicitly initialized to 'null' (default value for its type). 46
 Error blocks LeftCurly '{' at column 106 should be on a new line. 49
 Error blocks NeedBraces 'if' construct must use '{}'s. 52
 Error blocks NeedBraces 'if' construct must use '{}'s. 54
 Error blocks LeftCurly '{' at column 70 should be on a new line. 60

fr/paris/lutece/plugins/parisvideo/web/ManageParisVideoJspBean.java

Severity Category Rule Message Line
 Error coding DeclarationOrder Variable access definition in wrong order. 57
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error javadoc JavadocMethod Missing a Javadoc comment. 96
 Error naming LocalVariableName Name '_collec' must match pattern '^[a-z][a-zA-Z0-9]*$'. 99
 Error javadoc JavadocMethod Missing a Javadoc comment. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Error naming LocalVariableName Name '_strAction' must match pattern '^[a-z][a-zA-Z0-9]*$'. 116
 Error naming LocalVariableName Name '_strName' must match pattern '^[a-z][a-zA-Z0-9]*$'. 117
 Error naming LocalVariableName Name '_strLogin' must match pattern '^[a-z][a-zA-Z0-9]*$'. 118
 Error naming LocalVariableName Name '_strPassword' must match pattern '^[a-z][a-zA-Z0-9]*$'. 119
 Error whitespace ParenPad '(' is not followed by whitespace. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 121
 Error whitespace ParenPad ')' is not preceded with whitespace. 121
 Error whitespace ParenPad ')' is not preceded with whitespace. 121

fr/paris/lutece/plugins/parisvideo/web/ParisvideoJspBean.java

Severity Category Rule Message Line
 Error coding DeclarationOrder Variable access definition in wrong order. 73
 Error coding DeclarationOrder Static variable definition in wrong order. 100
 Error coding ExplicitInitialization Variable '_plugin' explicitly initialized to 'null' (default value for its type). 100
 Error javadoc JavadocMethod Missing a Javadoc comment. 102
 Error javadoc JavadocMethod Expected an @return tag. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error javadoc JavadocMethod Expected @param tag for 'request'. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error naming LocalVariableName Name '_collec' must match pattern '^[a-z][a-zA-Z0-9]*$'. 122
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 143
 Error whitespace ParenPad ')' is not preceded with whitespace. 143
 Error javadoc JavadocMethod Expected an @return tag. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 158
 Error javadoc JavadocMethod Expected @param tag for 'request'. 158
 Error whitespace ParenPad ')' is not preceded with whitespace. 158
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 166
 Error whitespace ParenPad ')' is not preceded with whitespace. 166
 Error whitespace ParenPad '(' is not followed by whitespace. 172
 Error whitespace ParenPad ')' is not preceded with whitespace. 172
 Error whitespace ParenPad '(' is not followed by whitespace. 173
 Error whitespace ParenPad ')' is not preceded with whitespace. 173
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 178
 Error whitespace ParenPad ')' is not preceded with whitespace. 178
 Error blocks NeedBraces 'if' construct must use '{}'s. 179
 Error whitespace ParenPad '(' is not followed by whitespace. 179
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 179
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 179
 Error whitespace ParenPad ')' is not preceded with whitespace. 179
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad ')' is not preceded with whitespace. 183
 Error javadoc JavadocMethod Unused @param tag for 'strBeginDate'. 204
 Error javadoc JavadocMethod Expected an @return tag. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error javadoc JavadocMethod Expected @param tag for 'strDate'. 207
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error whitespace ParenPad '(' is not followed by whitespace. 213
 Error whitespace ParenPad ')' is not preceded with whitespace. 213
 Error whitespace ParenPad '(' is not followed by whitespace. 214
 Error whitespace ParenPad ')' is not preceded with whitespace. 214
 Error whitespace ParenPad '(' is not followed by whitespace. 215
 Error whitespace ParenPad ')' is not preceded with whitespace. 215
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error whitespace ParenPad '(' is not followed by whitespace. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error javadoc JavadocMethod Expected an @return tag. 227
 Error whitespace ParenPad '(' is not followed by whitespace. 227
 Error javadoc JavadocMethod Expected @param tag for 'request'. 227
 Error whitespace ParenPad ')' is not preceded with whitespace. 227
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 227
 Error blocks NeedBraces 'if' construct must use '{}'s. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 231
 Error whitespace ParenPad ')' is not preceded with whitespace. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 237
 Error whitespace ParenPad ')' is not preceded with whitespace. 237
 Error whitespace ParenPad '(' is not followed by whitespace. 238
 Error whitespace ParenPad ')' is not preceded with whitespace. 238
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error javadoc JavadocMethod Expected an @return tag. 251
 Error whitespace ParenPad '(' is not followed by whitespace. 251
 Error javadoc JavadocMethod Expected @param tag for 'request'. 251
 Error whitespace ParenPad ')' is not preceded with whitespace. 251
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 251
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 254
 Error whitespace ParenPad '(' is not followed by whitespace. 257
 Error whitespace ParenPad ')' is not preceded with whitespace. 257