Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 7.2 with sun_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
15 0 0 495

Rules

Category Rule Violations Severity
blocks LeftCurly 4  Error
coding AvoidInlineConditionals 2  Error
EqualsHashCode 1  Error
HiddenField 23  Error
InnerAssignment 2  Error
MagicNumber 3  Error
SimplifyBooleanExpression 4  Error
design DesignForExtension 62  Error
HideUtilityClassConstructor 1  Error
VisibilityModifier 6  Error
javadoc JavadocMethod 38  Error
JavadocPackage 7  Error
JavadocStyle 20  Error
JavadocType 6  Error
JavadocVariable 44  Error
misc FinalParameters 97  Error
NewlineAtEndOfFile 1  Error
naming StaticVariableName 2  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
29  Error
sizes LineLength 131  Error
whitespace ParenPad 10  Error
WhitespaceAfter 2  Error

Details

org/apache/streams/instagram/InstagramConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 19
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 26
 Error javadoc JavadocStyle First sentence should end with a period. 28
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error sizes LineLength Line is longer than 80 characters (found 85). 38
 Error javadoc JavadocStyle First sentence should end with a period. 40
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error javadoc JavadocStyle First sentence should end with a period. 51
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error misc FinalParameters Parameter clientId should be final. 58
 Error coding HiddenField 'clientId' hides a field. 58
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'withClientId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'withClientId' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error javadoc JavadocMethod Missing a Javadoc comment. 62
 Error misc FinalParameters Parameter clientId should be final. 62
 Error coding HiddenField 'clientId' hides a field. 62
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error misc FinalParameters Parameter usersInfo should be final. 83
 Error coding HiddenField 'usersInfo' hides a field. 83
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'withUsersInfo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'withUsersInfo' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error misc FinalParameters Parameter usersInfo should be final. 87
 Error coding HiddenField 'usersInfo' hides a field. 87
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error javadoc JavadocMethod Missing a Javadoc comment. 102
 Error misc FinalParameters Parameter name should be final. 103
 Error misc FinalParameters Parameter value should be final. 103
 Error sizes LineLength Line is longer than 80 characters (found 85). 107
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error javadoc JavadocMethod Missing a Javadoc comment. 107
 Error misc FinalParameters Parameter name should be final. 107
 Error misc FinalParameters Parameter value should be final. 107
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error sizes LineLength Line is longer than 80 characters (found 114). 114
 Error design DesignForExtension Class 'InstagramConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error misc FinalParameters Parameter other should be final. 118
 Error coding SimplifyBooleanExpression Expression can be simplified. 122
 Error sizes LineLength Line is longer than 80 characters (found 165). 126

org/apache/streams/instagram/InstagramUserInformationConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 21
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 29
 Error javadoc JavadocStyle First sentence should end with a period. 31
 Error sizes LineLength Line is longer than 80 characters (found 93). 32
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error sizes LineLength Line is longer than 80 characters (found 85). 39
 Error javadoc JavadocStyle First sentence should end with a period. 41
 Error sizes LineLength Line is longer than 80 characters (found 93). 42
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error javadoc JavadocStyle First sentence should end with a period. 52
 Error sizes LineLength Line is longer than 80 characters (found 93). 53
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error misc FinalParameters Parameter userIds should be final. 59
 Error coding HiddenField 'userIds' hides a field. 59
 Error sizes LineLength Line is longer than 80 characters (found 84). 63
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'withUserIds' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'withUserIds' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error misc FinalParameters Parameter userIds should be final. 63
 Error coding HiddenField 'userIds' hides a field. 63
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error javadoc JavadocMethod Missing a Javadoc comment. 78
 Error misc FinalParameters Parameter name should be final. 79
 Error misc FinalParameters Parameter value should be final. 79
 Error sizes LineLength Line is longer than 80 characters (found 100). 83
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error misc FinalParameters Parameter name should be final. 83
 Error misc FinalParameters Parameter value should be final. 83
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error sizes LineLength Line is longer than 80 characters (found 95). 90
 Error design DesignForExtension Class 'InstagramUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInformationConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 93
 Error misc FinalParameters Parameter other should be final. 94
 Error coding SimplifyBooleanExpression Expression can be simplified. 98
 Error sizes LineLength Line is longer than 80 characters (found 100). 101
 Error sizes LineLength Line is longer than 80 characters (found 130). 102

org/apache/streams/instagram/User.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 19
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 27
 Error javadoc JavadocStyle First sentence should end with a period. 29
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error sizes LineLength Line is longer than 80 characters (found 185). 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error sizes LineLength Line is longer than 80 characters (found 183). 42
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error sizes LineLength Line is longer than 80 characters (found 85). 48
 Error javadoc JavadocStyle First sentence should end with a period. 50
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error javadoc JavadocStyle First sentence should end with a period. 61
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error misc FinalParameters Parameter userId should be final. 68
 Error coding HiddenField 'userId' hides a field. 68
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'withUserId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'withUserId' static/final/abstract/empty, or adding allowed annotation for the method. 72
 Error javadoc JavadocMethod Missing a Javadoc comment. 72
 Error misc FinalParameters Parameter userId should be final. 72
 Error coding HiddenField 'userId' hides a field. 72
 Error sizes LineLength Line is longer than 80 characters (found 185). 78
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error sizes LineLength Line is longer than 80 characters (found 185). 89
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error misc FinalParameters Parameter afterDate should be final. 95
 Error coding HiddenField 'afterDate' hides a field. 95
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'withAfterDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'withAfterDate' static/final/abstract/empty, or adding allowed annotation for the method. 99
 Error javadoc JavadocMethod Missing a Javadoc comment. 99
 Error misc FinalParameters Parameter afterDate should be final. 99
 Error coding HiddenField 'afterDate' hides a field. 99
 Error sizes LineLength Line is longer than 80 characters (found 183). 105
 Error regexp RegexpSingleline Line has trailing spaces. 106
 Error sizes LineLength Line is longer than 80 characters (found 183). 116
 Error regexp RegexpSingleline Line has trailing spaces. 117
 Error misc FinalParameters Parameter beforeDate should be final. 122
 Error coding HiddenField 'beforeDate' hides a field. 122
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'withBeforeDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'withBeforeDate' static/final/abstract/empty, or adding allowed annotation for the method. 126
 Error javadoc JavadocMethod Missing a Javadoc comment. 126
 Error misc FinalParameters Parameter beforeDate should be final. 126
 Error coding HiddenField 'beforeDate' hides a field. 126
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 131
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 136
 Error javadoc JavadocMethod Missing a Javadoc comment. 136
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 141
 Error javadoc JavadocMethod Missing a Javadoc comment. 141
 Error misc FinalParameters Parameter name should be final. 142
 Error misc FinalParameters Parameter value should be final. 142
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 146
 Error javadoc JavadocMethod Missing a Javadoc comment. 146
 Error misc FinalParameters Parameter name should be final. 146
 Error misc FinalParameters Parameter value should be final. 146
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 151
 Error sizes LineLength Line is longer than 80 characters (found 131). 153
 Error design DesignForExtension Class 'User' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'User' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 156
 Error misc FinalParameters Parameter other should be final. 157
 Error coding SimplifyBooleanExpression Expression can be simplified. 161
 Error sizes LineLength Line is longer than 80 characters (found 196). 165

org/apache/streams/instagram/UsersInfo.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 23
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 32
 Error javadoc JavadocStyle First sentence should end with a period. 34
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error sizes LineLength Line is longer than 80 characters (found 85). 43
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error sizes LineLength Line is longer than 80 characters (found 233). 51
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error sizes LineLength Line is longer than 80 characters (found 218). 57
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error sizes LineLength Line is longer than 80 characters (found 85). 63
 Error javadoc JavadocStyle First sentence should end with a period. 65
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error javadoc JavadocStyle First sentence should end with a period. 76
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error misc FinalParameters Parameter authorizedTokens should be final. 83
 Error coding HiddenField 'authorizedTokens' hides a field. 83
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'withAuthorizedTokens' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'withAuthorizedTokens' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error misc FinalParameters Parameter authorizedTokens should be final. 87
 Error coding HiddenField 'authorizedTokens' hides a field. 87
 Error sizes LineLength Line is longer than 80 characters (found 85). 93
 Error regexp RegexpSingleline Line has trailing spaces. 94
 Error sizes LineLength Line is longer than 80 characters (found 85). 104
 Error regexp RegexpSingleline Line has trailing spaces. 105
 Error misc FinalParameters Parameter users should be final. 110
 Error coding HiddenField 'users' hides a field. 110
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'withUsers' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'withUsers' static/final/abstract/empty, or adding allowed annotation for the method. 114
 Error javadoc JavadocMethod Missing a Javadoc comment. 114
 Error misc FinalParameters Parameter users should be final. 114
 Error coding HiddenField 'users' hides a field. 114
 Error sizes LineLength Line is longer than 80 characters (found 233). 120
 Error regexp RegexpSingleline Line has trailing spaces. 121
 Error sizes LineLength Line is longer than 80 characters (found 233). 131
 Error regexp RegexpSingleline Line has trailing spaces. 132
 Error misc FinalParameters Parameter defaultAfterDate should be final. 137
 Error coding HiddenField 'defaultAfterDate' hides a field. 137
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'withDefaultAfterDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'withDefaultAfterDate' static/final/abstract/empty, or adding allowed annotation for the method. 141
 Error javadoc JavadocMethod Missing a Javadoc comment. 141
 Error misc FinalParameters Parameter defaultAfterDate should be final. 141
 Error coding HiddenField 'defaultAfterDate' hides a field. 141
 Error sizes LineLength Line is longer than 80 characters (found 218). 147
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error sizes LineLength Line is longer than 80 characters (found 218). 158
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error misc FinalParameters Parameter defaultBeforeDate should be final. 164
 Error coding HiddenField 'defaultBeforeDate' hides a field. 164
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'withDefaultBeforeDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'withDefaultBeforeDate' static/final/abstract/empty, or adding allowed annotation for the method. 168
 Error javadoc JavadocMethod Missing a Javadoc comment. 168
 Error misc FinalParameters Parameter defaultBeforeDate should be final. 168
 Error coding HiddenField 'defaultBeforeDate' hides a field. 168
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 173
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 178
 Error javadoc JavadocMethod Missing a Javadoc comment. 178
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 183
 Error javadoc JavadocMethod Missing a Javadoc comment. 183
 Error misc FinalParameters Parameter name should be final. 184
 Error misc FinalParameters Parameter value should be final. 184
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 188
 Error javadoc JavadocMethod Missing a Javadoc comment. 188
 Error misc FinalParameters Parameter name should be final. 188
 Error misc FinalParameters Parameter value should be final. 188
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 193
 Error sizes LineLength Line is longer than 80 characters (found 169). 195
 Error design DesignForExtension Class 'UsersInfo' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'UsersInfo' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 198
 Error misc FinalParameters Parameter other should be final. 199
 Error coding SimplifyBooleanExpression Expression can be simplified. 203
 Error sizes LineLength Line is longer than 80 characters (found 269). 207

org/apache/streams/instagram/processor/InstagramTypeConverter.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 91). 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error sizes LineLength Line is longer than 80 characters (found 93). 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error design DesignForExtension Class 'InstagramTypeConverter' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramTypeConverter' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 53
 Error design DesignForExtension Class 'InstagramTypeConverter' looks like designed for extension (can be subclassed), but the method 'process' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramTypeConverter' final or making the method 'process' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error misc FinalParameters Parameter entry should be final. 59
 Error sizes LineLength Line is longer than 80 characters (found 85). 69
 Error sizes LineLength Line is longer than 80 characters (found 93). 71
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 71
 Error whitespace ParenPad '(' is followed by whitespace. 73
 Error whitespace ParenPad ')' is preceded with whitespace. 73
 Error sizes LineLength Line is longer than 80 characters (found 99). 79
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 79
 Error whitespace ParenPad '(' is followed by whitespace. 81
 Error whitespace ParenPad ')' is preceded with whitespace. 81
 Error whitespace ParenPad '(' is followed by whitespace. 92
 Error whitespace ParenPad ')' is preceded with whitespace. 92
 Error design DesignForExtension Class 'InstagramTypeConverter' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramTypeConverter' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 99
 Error misc FinalParameters Parameter configurationObject should be final. 100

org/apache/streams/instagram/provider/InstagramAbstractProvider.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocStyle First sentence should end with a period. 49
 Error sizes LineLength Line is longer than 80 characters (found 110). 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error sizes LineLength Line is longer than 80 characters (found 96). 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error design VisibilityModifier Variable 'config' must be private and have accessor methods. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 61
 Error design VisibilityModifier Variable 'dataQueue' must be private and have accessor methods. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocMethod Missing a Javadoc comment. 68
 Error sizes LineLength Line is longer than 80 characters (found 85). 70
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error misc FinalParameters Parameter config should be final. 73
 Error coding HiddenField 'config' hides a field. 73
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'startStream' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error sizes LineLength Line is longer than 80 characters (found 97). 85
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'readCurrent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 98
 Error sizes LineLength Line is longer than 80 characters (found 96). 103
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'readNew' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 109
 Error misc FinalParameters Parameter sequence should be final. 110
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'readRange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 114
 Error misc FinalParameters Parameter start should be final. 115
 Error misc FinalParameters Parameter end should be final. 115
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error misc FinalParameters Parameter configurationObject should be final. 120
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'cleanUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'cleanUp' static/final/abstract/empty, or adding allowed annotation for the method. 125
 Error coding MagicNumber '5' is a magic number. 128
 Error coding MagicNumber '5' is a magic number. 128
 Error sizes LineLength Line is longer than 80 characters (found 94). 139
 Error misc FinalParameters Parameter clientId should be final. 158
 Error misc FinalParameters Parameter tokenStrings should be final. 166
 Error sizes LineLength Line is longer than 80 characters (found 82). 167
 Error misc FinalParameters Parameter beforeDate should be final. 174
 Error misc FinalParameters Parameter afterDate should be final. 182
 Error sizes LineLength Line is longer than 80 characters (found 108). 187
 Error sizes LineLength Line is longer than 80 characters (found 113). 188
 Error misc FinalParameters Parameter usersWithAfterDate should be final. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 203
 Error misc FinalParameters Parameter config should be final. 203
 Error coding HiddenField 'config' hides a field. 203
 Error design DesignForExtension Class 'InstagramAbstractProvider' looks like designed for extension (can be subclassed), but the method 'isRunning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramAbstractProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 212
 Error sizes LineLength Line is longer than 80 characters (found 103). 214

org/apache/streams/instagram/provider/InstagramDataCollector.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 118). 38
 Error sizes LineLength Line is longer than 80 characters (found 107). 39
 Error javadoc JavadocType Type Javadoc comment is missing an @param <T> tag. 41
 Error sizes LineLength Line is longer than 80 characters (found 93). 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error design VisibilityModifier Variable 'dataQueue' must be private and have accessor methods. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error design VisibilityModifier Variable 'consecutiveErrorCount' must be private and have accessor methods. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error design VisibilityModifier Variable 'backOffStrategy' must be private and have accessor methods. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error sizes LineLength Line is longer than 80 characters (found 91). 58
 Error misc FinalParameters Parameter queue should be final. 58
 Error misc FinalParameters Parameter config should be final. 58
 Error coding HiddenField 'config' hides a field. 58
 Error sizes LineLength Line is longer than 80 characters (found 93). 73
 Error sizes LineLength Line is longer than 80 characters (found 89). 74
 Error misc FinalParameters Parameter userData should be final. 98
 Error misc FinalParameters Parameter userId should be final. 98
 Error sizes LineLength Line is longer than 80 characters (found 86). 103
 Error sizes LineLength Line is longer than 80 characters (found 107). 109
 Error design DesignForExtension Class 'InstagramDataCollector' looks like designed for extension (can be subclassed), but the method 'run' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramDataCollector' final or making the method 'run' static/final/abstract/empty, or adding allowed annotation for the method. 115
 Error sizes LineLength Line is longer than 80 characters (found 102). 123
 Error sizes LineLength Line is longer than 80 characters (found 82). 135
 Error javadoc JavadocMethod Expected @param tag for 'user'. 135
 Error javadoc JavadocMethod Expected @throws tag for 'Exception'. 135
 Error sizes LineLength Line is longer than 80 characters (found 115). 138
 Error javadoc JavadocMethod Expected an @return tag. 142
 Error javadoc JavadocMethod Expected @param tag for 'item'. 142

org/apache/streams/instagram/provider/InstagramOauthToken.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 114). 21
 Error javadoc JavadocMethod Missing a Javadoc comment. 26
 Error misc FinalParameters Parameter token should be final. 26
 Error javadoc JavadocMethod Missing a Javadoc comment. 30
 Error misc FinalParameters Parameter token should be final. 30
 Error misc FinalParameters Parameter secret should be final. 30
 Error design DesignForExtension Class 'InstagramOauthToken' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramOauthToken' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 34
 Error coding EqualsHashCode Definition of 'equals()' without corresponding definition of 'hashCode()'. 34
 Error misc FinalParameters Parameter object should be final. 35

org/apache/streams/instagram/provider/recentmedia/InstagramRecentMediaCollector.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 118). 36
 Error sizes LineLength Line is longer than 80 characters (found 107). 37
 Error sizes LineLength Line is longer than 80 characters (found 90). 39
 Error sizes LineLength Line is longer than 80 characters (found 100). 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error sizes LineLength Line is longer than 80 characters (found 98). 47
 Error javadoc JavadocMethod Missing a Javadoc comment. 47
 Error misc FinalParameters Parameter queue should be final. 47
 Error misc FinalParameters Parameter config should be final. 47
 Error design DesignForExtension Class 'InstagramRecentMediaCollector' looks like designed for extension (can be subclassed), but the method 'convertToStreamsDatum' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramRecentMediaCollector' final or making the method 'convertToStreamsDatum' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error misc FinalParameters Parameter item should be final. 52
 Error sizes LineLength Line is longer than 80 characters (found 116). 57
 Error misc FinalParameters Parameter user should be final. 63
 Error sizes LineLength Line is longer than 80 characters (found 84). 77
 Error coding AvoidInlineConditionals Avoid inline conditionals. 77
 Error sizes LineLength Line is longer than 80 characters (found 83). 78
 Error coding AvoidInlineConditionals Avoid inline conditionals. 78
 Error whitespace ParenPad '(' is followed by whitespace. 83
 Error sizes LineLength Line is longer than 80 characters (found 95). 84
 Error whitespace ParenPad '(' is followed by whitespace. 86
 Error sizes LineLength Line is longer than 80 characters (found 83). 87
 Error sizes LineLength Line is longer than 80 characters (found 90). 91
 Error sizes LineLength Line is longer than 80 characters (found 99). 94
 Error sizes LineLength Line is longer than 80 characters (found 130). 96
 Error coding InnerAssignment Inner assignments should be avoided. 99
 Error sizes LineLength Line is longer than 80 characters (found 108). 107

org/apache/streams/instagram/provider/recentmedia/InstagramRecentMediaProvider.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 118). 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error sizes LineLength Line is longer than 80 characters (found 99). 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error naming StaticVariableName Name 'MAPPER' must match pattern '^[a-z][a-zA-Z0-9]*$'. 57
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 62
 Error misc FinalParameters Parameter config should be final. 62
 Error design DesignForExtension Class 'InstagramRecentMediaProvider' looks like designed for extension (can be subclassed), but the method 'getInstagramDataCollector' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramRecentMediaProvider' final or making the method 'getInstagramDataCollector' static/final/abstract/empty, or adding allowed annotation for the method. 66
 Error javadoc JavadocStyle First sentence should end with a period. 71
 Error sizes LineLength Line is longer than 80 characters (found 102). 87
 Error misc FinalParameters Parameter args should be final. 93
 Error sizes LineLength Line is longer than 80 characters (found 111). 103
 Error sizes LineLength Line is longer than 80 characters (found 98). 107
 Error sizes LineLength Line is longer than 80 characters (found 137). 108
 Error sizes LineLength Line is longer than 80 characters (found 85). 109
 Error sizes LineLength Line is longer than 80 characters (found 101). 111
 Error sizes LineLength Line is longer than 80 characters (found 111). 115
 Error whitespace ParenPad '(' is followed by whitespace. 128

org/apache/streams/instagram/provider/userinfo/InstagramUserInfoCollector.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocStyle First sentence should end with a period. 34
 Error sizes LineLength Line is longer than 80 characters (found 86). 38
 Error sizes LineLength Line is longer than 80 characters (found 97). 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error sizes LineLength Line is longer than 80 characters (found 99). 45
 Error javadoc JavadocMethod Missing a Javadoc comment. 45
 Error misc FinalParameters Parameter dataQueue should be final. 45
 Error misc FinalParameters Parameter config should be final. 45
 Error design DesignForExtension Class 'InstagramUserInfoCollector' looks like designed for extension (can be subclassed), but the method 'collectInstagramDataForUser' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoCollector' final or making the method 'collectInstagramDataForUser' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error misc FinalParameters Parameter user should be final. 51
 Error sizes LineLength Line is longer than 80 characters (found 96). 64
 Error sizes LineLength Line is longer than 80 characters (found 99). 71
 Error sizes LineLength Line is longer than 80 characters (found 97). 72
 Error sizes LineLength Line is longer than 80 characters (found 108). 73
 Error coding InnerAssignment Inner assignments should be avoided. 76
 Error design DesignForExtension Class 'InstagramUserInfoCollector' looks like designed for extension (can be subclassed), but the method 'convertToStreamsDatum' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoCollector' final or making the method 'convertToStreamsDatum' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error misc FinalParameters Parameter item should be final. 89

org/apache/streams/instagram/provider/userinfo/InstagramUserInfoProvider.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error sizes LineLength Line is longer than 80 characters (found 96). 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error naming StaticVariableName Name 'MAPPER' must match pattern '^[a-z][a-zA-Z0-9]*$'. 57
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error misc FinalParameters Parameter config should be final. 63
 Error design DesignForExtension Class 'InstagramUserInfoProvider' looks like designed for extension (can be subclassed), but the method 'getInstagramDataCollector' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoProvider' final or making the method 'getInstagramDataCollector' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error javadoc JavadocStyle First sentence should end with a period. 72
 Error sizes LineLength Line is longer than 80 characters (found 96). 88
 Error misc FinalParameters Parameter args should be final. 94
 Error sizes LineLength Line is longer than 80 characters (found 111). 104
 Error sizes LineLength Line is longer than 80 characters (found 98). 108
 Error sizes LineLength Line is longer than 80 characters (found 123). 109
 Error sizes LineLength Line is longer than 80 characters (found 101). 113
 Error sizes LineLength Line is longer than 80 characters (found 111). 117
 Error whitespace ParenPad '(' is followed by whitespace. 130

org/apache/streams/instagram/serializer/InstagramMediaFeedDataConverter.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 104). 34
 Error javadoc JavadocType Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error design VisibilityModifier Variable 'requiredClass' must be private and have accessor methods. 36
 Error javadoc JavadocMethod Missing a Javadoc comment. 38
 Error design DesignForExtension Class 'InstagramMediaFeedDataConverter' looks like designed for extension (can be subclassed), but the method 'requiredClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramMediaFeedDataConverter' final or making the method 'requiredClass' static/final/abstract/empty, or adding allowed annotation for the method. 42
 Error design DesignForExtension Class 'InstagramMediaFeedDataConverter' looks like designed for extension (can be subclassed), but the method 'serializationFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramMediaFeedDataConverter' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error design DesignForExtension Class 'InstagramMediaFeedDataConverter' looks like designed for extension (can be subclassed), but the method 'fromActivity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramMediaFeedDataConverter' final or making the method 'fromActivity' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error sizes LineLength Line is longer than 80 characters (found 95). 53
 Error misc FinalParameters Parameter deserialized should be final. 53
 Error design DesignForExtension Class 'InstagramMediaFeedDataConverter' looks like designed for extension (can be subclassed), but the method 'fromActivityList' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramMediaFeedDataConverter' final or making the method 'fromActivityList' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error sizes LineLength Line is longer than 80 characters (found 103). 58
 Error misc FinalParameters Parameter list should be final. 58
 Error design DesignForExtension Class 'InstagramMediaFeedDataConverter' looks like designed for extension (can be subclassed), but the method 'toActivityList' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramMediaFeedDataConverter' final or making the method 'toActivityList' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error sizes LineLength Line is longer than 80 characters (found 95). 63
 Error misc FinalParameters Parameter item should be final. 63
 Error design DesignForExtension Class 'InstagramMediaFeedDataConverter' looks like designed for extension (can be subclassed), but the method 'toActivityList' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramMediaFeedDataConverter' final or making the method 'toActivityList' static/final/abstract/empty, or adding allowed annotation for the method. 72
 Error sizes LineLength Line is longer than 80 characters (found 101). 73
 Error misc FinalParameters Parameter list should be final. 73

org/apache/streams/instagram/serializer/InstagramUserInfoDataConverter.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 36
 Error sizes LineLength Line is longer than 80 characters (found 94). 39
 Error sizes LineLength Line is longer than 80 characters (found 101). 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error design DesignForExtension Class 'InstagramUserInfoDataConverter' looks like designed for extension (can be subclassed), but the method 'requiredClass' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoDataConverter' final or making the method 'requiredClass' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error design DesignForExtension Class 'InstagramUserInfoDataConverter' looks like designed for extension (can be subclassed), but the method 'serializationFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoDataConverter' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error design DesignForExtension Class 'InstagramUserInfoDataConverter' looks like designed for extension (can be subclassed), but the method 'fromActivityObject' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoDataConverter' final or making the method 'fromActivityObject' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error sizes LineLength Line is longer than 80 characters (found 106). 58
 Error misc FinalParameters Parameter deserialized should be final. 58
 Error design DesignForExtension Class 'InstagramUserInfoDataConverter' looks like designed for extension (can be subclassed), but the method 'toActivityObject' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'InstagramUserInfoDataConverter' final or making the method 'toActivityObject' static/final/abstract/empty, or adding allowed annotation for the method. 62
 Error sizes LineLength Line is longer than 80 characters (found 102). 63
 Error misc FinalParameters Parameter serialized should be final. 63

org/apache/streams/instagram/serializer/util/InstagramActivityUtil.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline.
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 88). 53
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 55
 Error sizes LineLength Line is longer than 80 characters (found 92). 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error javadoc JavadocStyle First sentence should end with a period. 58
 Error sizes LineLength Line is longer than 80 characters (found 88). 61
 Error sizes LineLength Line is longer than 80 characters (found 111). 65
 Error misc FinalParameters Parameter item should be final. 65
 Error misc FinalParameters Parameter activity should be final. 65
 Error sizes LineLength Line is longer than 80 characters (found 88). 70
 Error coding MagicNumber '1000' is a magic number. 70
 Error javadoc JavadocStyle First sentence should end with a period. 87
 Error sizes LineLength Line is longer than 80 characters (found 88). 90
 Error sizes LineLength Line is longer than 80 characters (found 110). 93
 Error misc FinalParameters Parameter item should be final. 93
 Error misc FinalParameters Parameter activity should be final. 93
 Error misc FinalParameters Parameter item should be final. 104
 Error sizes LineLength Line is longer than 80 characters (found 82). 129
 Error misc FinalParameters Parameter item should be final. 140
 Error sizes LineLength Line is longer than 80 characters (found 82). 159
 Error misc FinalParameters Parameter item should be final. 170
 Error sizes LineLength Line is longer than 80 characters (found 82). 178
 Error sizes LineLength Line is longer than 80 characters (found 83). 179
 Error sizes LineLength Line is longer than 80 characters (found 81). 180
 Error sizes LineLength Line is longer than 80 characters (found 82). 183
 Error sizes LineLength Line is longer than 80 characters (found 89). 200
 Error misc FinalParameters Parameter item should be final. 200
 Error sizes LineLength Line is longer than 80 characters (found 92). 214
 Error misc FinalParameters Parameter attachments should be final. 214
 Error misc FinalParameters Parameter item should be final. 214
 Error sizes LineLength Line is longer than 80 characters (found 92). 251
 Error misc FinalParameters Parameter attachments should be final. 251
 Error misc FinalParameters Parameter item should be final. 251
 Error sizes LineLength Line is longer than 80 characters (found 81). 261
 Error misc FinalParameters Parameter item should be final. 278
 Error sizes LineLength Line is longer than 80 characters (found 82). 287
 Error misc FinalParameters Parameter activity should be final. 287
 Error misc FinalParameters Parameter item should be final. 287
 Error sizes LineLength Line is longer than 80 characters (found 92). 288
 Error sizes LineLength Line is longer than 80 characters (found 125). 293
 Error javadoc JavadocStyle First sentence should end with a period. 310
 Error misc FinalParameters Parameter idparts should be final. 315
 Error sizes LineLength Line is longer than 80 characters (found 121). 317
 Error sizes LineLength Line is longer than 80 characters (found 90). 321
 Error sizes LineLength Line is longer than 80 characters (found 84). 326
 Error misc FinalParameters Parameter activity should be final. 326
 Error misc FinalParameters Parameter item should be final. 326
 Error sizes LineLength Line is longer than 80 characters (found 92). 327