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
53 0 0 3629

Files

File  I  W  E
JAXBDebug.java 0 0 13
com/moreover/api/Adapter1.java 0 0 15
com/moreover/api/Article.java 0 0 373
com/moreover/api/ArticleLocation.java 0 0 99
com/moreover/api/ArticlePublishingPlatform.java 0 0 53
com/moreover/api/ArticlesResponse.java 0 0 72
com/moreover/api/AudioOrVideo.java 0 0 45
com/moreover/api/Author.java 0 0 61
com/moreover/api/AuthorPublishingPlatform.java 0 0 69
com/moreover/api/Broadcast.java 0 0 64
com/moreover/api/Company.java 0 0 77
com/moreover/api/Country.java 0 0 45
com/moreover/api/Feed.java 0 0 213
com/moreover/api/Harvest.java 0 0 29
com/moreover/api/Image.java 0 0 37
com/moreover/api/Line.java 0 0 29
com/moreover/api/Media.java 0 0 46
com/moreover/api/ObjectFactory.java 0 0 142
com/moreover/api/Print.java 0 0 117
com/moreover/api/Property.java 0 0 31
com/moreover/api/Rank.java 0 0 37
com/moreover/api/Semantics.java 0 0 67
com/moreover/api/SemanticsItem.java 0 0 40
com/moreover/api/Source.java 0 0 115
com/moreover/api/SourceLocation.java 0 0 69
com/moreover/api/State.java 0 0 37
com/moreover/api/Topic.java 0 0 29
org/apache/streams/moreover/Audio.java 0 0 39
org/apache/streams/moreover/Author.java 0 0 59
org/apache/streams/moreover/Companies.java 0 0 85
org/apache/streams/moreover/Country.java 0 0 58
org/apache/streams/moreover/Feed.java 0 0 175
org/apache/streams/moreover/Image.java 0 0 29
org/apache/streams/moreover/Location.java 0 0 83
org/apache/streams/moreover/Locations.java 0 0 112
org/apache/streams/moreover/Media.java 0 0 83
org/apache/streams/moreover/Moreover.java 0 0 229
org/apache/streams/moreover/MoreoverClient.java 0 0 34
org/apache/streams/moreover/MoreoverConfiguration.java 0 0 49
org/apache/streams/moreover/MoreoverJsonActivitySerializer.java 0 0 18
org/apache/streams/moreover/MoreoverKeyData.java 0 0 48
org/apache/streams/moreover/MoreoverProvider.java 0 0 34
org/apache/streams/moreover/MoreoverProviderTask.java 0 0 26
org/apache/streams/moreover/MoreoverResult.java 0 0 51
org/apache/streams/moreover/MoreoverUtils.java 0 0 31
org/apache/streams/moreover/MoreoverXmlActivitySerializer.java 0 0 24
org/apache/streams/moreover/PublishingPlatform.java 0 0 39
org/apache/streams/moreover/PublishingPlatform_.java 0 0 40
org/apache/streams/moreover/Rank.java 0 0 47
org/apache/streams/moreover/Source.java 0 0 85
org/apache/streams/moreover/State.java 0 0 49
org/apache/streams/moreover/Topics.java 0 0 40
org/apache/streams/moreover/Video.java 0 0 38

Rules

Category Rule Violations Severity
blocks LeftCurly 42  Error
coding AvoidInlineConditionals 3  Error
HiddenField 248  Error
MagicNumber 2  Error
SimplifyBooleanExpression 19  Error
design DesignForExtension 251  Error
FinalClass 1  Error
HideUtilityClassConstructor 1  Error
VisibilityModifier 179  Error
javadoc JavadocMethod 252  Error
JavadocPackage 4  Error
JavadocStyle 41  Error
JavadocType 23  Error
JavadocVariable 343  Error
misc FinalParameters 523  Error
modifier ModifierOrder 38  Error
naming ConstantName 3  Error
TypeName 1  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
1250  Error
sizes LineLength 400  Error
whitespace ParenPad 4  Error
WhitespaceAfter 1  Error

Details

JAXBDebug.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error javadoc JavadocType Missing a Javadoc comment. 36
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 36
 Error javadoc JavadocMethod Missing a Javadoc comment. 39
 Error misc FinalParameters Parameter classLoader should be final. 39
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 41
 Error sizes LineLength Line is longer than 80 characters (found 800). 42

com/moreover/api/Adapter1.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error javadoc JavadocType Missing a Javadoc comment. 14
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 16
 Error design DesignForExtension Class 'Adapter1' looks like designed for extension (can be subclassed), but the method 'unmarshal' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Adapter1' final or making the method 'unmarshal' static/final/abstract/empty, or adding allowed annotation for the method. 19
 Error javadoc JavadocMethod Missing a Javadoc comment. 19
 Error misc FinalParameters Parameter value should be final. 19
 Error design DesignForExtension Class 'Adapter1' looks like designed for extension (can be subclassed), but the method 'marshal' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Adapter1' final or making the method 'marshal' static/final/abstract/empty, or adding allowed annotation for the method. 23
 Error javadoc JavadocMethod Missing a Javadoc comment. 23
 Error misc FinalParameters Parameter value should be final. 23

com/moreover/api/Article.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 95). 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error sizes LineLength Line is longer than 80 characters (found 107). 30
 Error sizes LineLength Line is longer than 80 characters (found 85). 31
 Error sizes LineLength Line is longer than 80 characters (found 91). 32
 Error sizes LineLength Line is longer than 80 characters (found 88). 33
 Error sizes LineLength Line is longer than 80 characters (found 105). 34
 Error sizes LineLength Line is longer than 80 characters (found 104). 35
 Error sizes LineLength Line is longer than 80 characters (found 114). 36
 Error sizes LineLength Line is longer than 80 characters (found 85). 40
 Error sizes LineLength Line is longer than 80 characters (found 132). 42
 Error sizes LineLength Line is longer than 80 characters (found 96). 48
 Error sizes LineLength Line is longer than 80 characters (found 94). 49
 Error sizes LineLength Line is longer than 80 characters (found 108). 50
 Error sizes LineLength Line is longer than 80 characters (found 97). 51
 Error sizes LineLength Line is longer than 80 characters (found 86). 52
 Error sizes LineLength Line is longer than 80 characters (found 108). 53
 Error sizes LineLength Line is longer than 80 characters (found 94). 54
 Error sizes LineLength Line is longer than 80 characters (found 85). 58
 Error sizes LineLength Line is longer than 80 characters (found 140). 60
 Error sizes LineLength Line is longer than 80 characters (found 106). 66
 Error sizes LineLength Line is longer than 80 characters (found 93). 67
 Error sizes LineLength Line is longer than 80 characters (found 92). 68
 Error sizes LineLength Line is longer than 80 characters (found 94). 69
 Error sizes LineLength Line is longer than 80 characters (found 99). 70
 Error sizes LineLength Line is longer than 80 characters (found 112). 71
 Error sizes LineLength Line is longer than 80 characters (found 88). 74
 Error sizes LineLength Line is longer than 80 characters (found 96). 75
 Error sizes LineLength Line is longer than 80 characters (found 85). 79
 Error sizes LineLength Line is longer than 80 characters (found 101). 81
 Error sizes LineLength Line is longer than 80 characters (found 85). 90
 Error sizes LineLength Line is longer than 80 characters (found 105). 92
 Error sizes LineLength Line is longer than 80 characters (found 85). 101
 Error sizes LineLength Line is longer than 80 characters (found 114). 103
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 120
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 161
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 163
 Error javadoc JavadocVariable Missing a Javadoc comment. 164
 Error design VisibilityModifier Variable 'sequenceId' must be private and have accessor methods. 164
 Error javadoc JavadocVariable Missing a Javadoc comment. 165
 Error design VisibilityModifier Variable 'id' must be private and have accessor methods. 166
 Error javadoc JavadocVariable Missing a Javadoc comment. 167
 Error design VisibilityModifier Variable 'language' must be private and have accessor methods. 168
 Error javadoc JavadocVariable Missing a Javadoc comment. 169
 Error design VisibilityModifier Variable 'title' must be private and have accessor methods. 170
 Error javadoc JavadocVariable Missing a Javadoc comment. 171
 Error design VisibilityModifier Variable 'subTitle' must be private and have accessor methods. 171
 Error javadoc JavadocVariable Missing a Javadoc comment. 172
 Error design VisibilityModifier Variable 'content' must be private and have accessor methods. 172
 Error javadoc JavadocVariable Missing a Javadoc comment. 173
 Error design VisibilityModifier Variable 'contentWithMarkup' must be private and have accessor methods. 173
 Error javadoc JavadocVariable Missing a Javadoc comment. 174
 Error design VisibilityModifier Variable 'tags' must be private and have accessor methods. 174
 Error javadoc JavadocVariable Missing a Javadoc comment. 175
 Error design VisibilityModifier Variable 'publishedDate' must be private and have accessor methods. 176
 Error javadoc JavadocVariable Missing a Javadoc comment. 177
 Error design VisibilityModifier Variable 'harvestDate' must be private and have accessor methods. 178
 Error javadoc JavadocVariable Missing a Javadoc comment. 179
 Error design VisibilityModifier Variable 'embargoDate' must be private and have accessor methods. 179
 Error javadoc JavadocVariable Missing a Javadoc comment. 180
 Error design VisibilityModifier Variable 'licenseEndDate' must be private and have accessor methods. 181
 Error javadoc JavadocVariable Missing a Javadoc comment. 182
 Error design VisibilityModifier Variable 'url' must be private and have accessor methods. 183
 Error javadoc JavadocVariable Missing a Javadoc comment. 184
 Error design VisibilityModifier Variable 'originalUrl' must be private and have accessor methods. 184
 Error javadoc JavadocVariable Missing a Javadoc comment. 185
 Error design VisibilityModifier Variable 'commentsUrl' must be private and have accessor methods. 186
 Error javadoc JavadocVariable Missing a Javadoc comment. 187
 Error design VisibilityModifier Variable 'outboundUrls' must be private and have accessor methods. 187
 Error javadoc JavadocVariable Missing a Javadoc comment. 188
 Error design VisibilityModifier Variable 'wordCount' must be private and have accessor methods. 188
 Error javadoc JavadocVariable Missing a Javadoc comment. 189
 Error design VisibilityModifier Variable 'dataFormat' must be private and have accessor methods. 190
 Error javadoc JavadocVariable Missing a Javadoc comment. 191
 Error design VisibilityModifier Variable 'copyright' must be private and have accessor methods. 192
 Error javadoc JavadocVariable Missing a Javadoc comment. 193
 Error design VisibilityModifier Variable 'loginStatus' must be private and have accessor methods. 194
 Error javadoc JavadocVariable Missing a Javadoc comment. 195
 Error design VisibilityModifier Variable 'duplicateGroupId' must be private and have accessor methods. 196
 Error javadoc JavadocVariable Missing a Javadoc comment. 197
 Error design VisibilityModifier Variable 'contentGroupIds' must be private and have accessor methods. 197
 Error javadoc JavadocVariable Missing a Javadoc comment. 198
 Error design VisibilityModifier Variable 'harvest' must be private and have accessor methods. 198
 Error javadoc JavadocVariable Missing a Javadoc comment. 199
 Error design VisibilityModifier Variable 'media' must be private and have accessor methods. 200
 Error javadoc JavadocVariable Missing a Javadoc comment. 201
 Error design VisibilityModifier Variable 'publishingPlatform' must be private and have accessor methods. 202
 Error javadoc JavadocVariable Missing a Javadoc comment. 203
 Error design VisibilityModifier Variable 'adultLanguage' must be private and have accessor methods. 204
 Error javadoc JavadocVariable Missing a Javadoc comment. 205
 Error design VisibilityModifier Variable 'topics' must be private and have accessor methods. 205
 Error javadoc JavadocVariable Missing a Javadoc comment. 206
 Error design VisibilityModifier Variable 'companies' must be private and have accessor methods. 206
 Error javadoc JavadocVariable Missing a Javadoc comment. 207
 Error design VisibilityModifier Variable 'locations' must be private and have accessor methods. 207
 Error javadoc JavadocVariable Missing a Javadoc comment. 208
 Error design VisibilityModifier Variable 'semantics' must be private and have accessor methods. 208
 Error javadoc JavadocVariable Missing a Javadoc comment. 209
 Error design VisibilityModifier Variable 'print' must be private and have accessor methods. 209
 Error javadoc JavadocVariable Missing a Javadoc comment. 210
 Error design VisibilityModifier Variable 'broadcast' must be private and have accessor methods. 210
 Error javadoc JavadocVariable Missing a Javadoc comment. 211
 Error design VisibilityModifier Variable 'author' must be private and have accessor methods. 212
 Error javadoc JavadocVariable Missing a Javadoc comment. 213
 Error design VisibilityModifier Variable 'source' must be private and have accessor methods. 214
 Error regexp RegexpSingleline Line has trailing spaces. 218
 Error regexp RegexpSingleline Line has trailing spaces. 222
 Error regexp RegexpSingleline Line has trailing spaces. 230
 Error regexp RegexpSingleline Line has trailing spaces. 234
 Error misc FinalParameters Parameter value should be final. 236
 Error regexp RegexpSingleline Line has trailing spaces. 242
 Error regexp RegexpSingleline Line has trailing spaces. 246
 Error regexp RegexpSingleline Line has trailing spaces. 254
 Error regexp RegexpSingleline Line has trailing spaces. 258
 Error misc FinalParameters Parameter value should be final. 260
 Error regexp RegexpSingleline Line has trailing spaces. 266
 Error regexp RegexpSingleline Line has trailing spaces. 270
 Error regexp RegexpSingleline Line has trailing spaces. 278
 Error regexp RegexpSingleline Line has trailing spaces. 282
 Error misc FinalParameters Parameter value should be final. 284
 Error regexp RegexpSingleline Line has trailing spaces. 290
 Error regexp RegexpSingleline Line has trailing spaces. 294
 Error regexp RegexpSingleline Line has trailing spaces. 302
 Error regexp RegexpSingleline Line has trailing spaces. 306
 Error misc FinalParameters Parameter value should be final. 308
 Error regexp RegexpSingleline Line has trailing spaces. 314
 Error regexp RegexpSingleline Line has trailing spaces. 318
 Error regexp RegexpSingleline Line has trailing spaces. 326
 Error regexp RegexpSingleline Line has trailing spaces. 330
 Error misc FinalParameters Parameter value should be final. 332
 Error regexp RegexpSingleline Line has trailing spaces. 338
 Error regexp RegexpSingleline Line has trailing spaces. 342
 Error regexp RegexpSingleline Line has trailing spaces. 350
 Error regexp RegexpSingleline Line has trailing spaces. 354
 Error misc FinalParameters Parameter value should be final. 356
 Error regexp RegexpSingleline Line has trailing spaces. 362
 Error regexp RegexpSingleline Line has trailing spaces. 366
 Error regexp RegexpSingleline Line has trailing spaces. 374
 Error regexp RegexpSingleline Line has trailing spaces. 378
 Error misc FinalParameters Parameter value should be final. 380
 Error regexp RegexpSingleline Line has trailing spaces. 386
 Error regexp RegexpSingleline Line has trailing spaces. 390
 Error regexp RegexpSingleline Line has trailing spaces. 398
 Error regexp RegexpSingleline Line has trailing spaces. 402
 Error misc FinalParameters Parameter value should be final. 404
 Error regexp RegexpSingleline Line has trailing spaces. 410
 Error regexp RegexpSingleline Line has trailing spaces. 414
 Error regexp RegexpSingleline Line has trailing spaces. 422
 Error regexp RegexpSingleline Line has trailing spaces. 426
 Error misc FinalParameters Parameter value should be final. 428
 Error regexp RegexpSingleline Line has trailing spaces. 434
 Error regexp RegexpSingleline Line has trailing spaces. 438
 Error regexp RegexpSingleline Line has trailing spaces. 446
 Error regexp RegexpSingleline Line has trailing spaces. 450
 Error misc FinalParameters Parameter value should be final. 452
 Error regexp RegexpSingleline Line has trailing spaces. 458
 Error regexp RegexpSingleline Line has trailing spaces. 462
 Error regexp RegexpSingleline Line has trailing spaces. 470
 Error regexp RegexpSingleline Line has trailing spaces. 474
 Error misc FinalParameters Parameter value should be final. 476
 Error regexp RegexpSingleline Line has trailing spaces. 482
 Error regexp RegexpSingleline Line has trailing spaces. 486
 Error regexp RegexpSingleline Line has trailing spaces. 494
 Error regexp RegexpSingleline Line has trailing spaces. 498
 Error misc FinalParameters Parameter value should be final. 500
 Error regexp RegexpSingleline Line has trailing spaces. 506
 Error regexp RegexpSingleline Line has trailing spaces. 510
 Error regexp RegexpSingleline Line has trailing spaces. 518
 Error regexp RegexpSingleline Line has trailing spaces. 522
 Error misc FinalParameters Parameter value should be final. 524
 Error regexp RegexpSingleline Line has trailing spaces. 530
 Error regexp RegexpSingleline Line has trailing spaces. 534
 Error regexp RegexpSingleline Line has trailing spaces. 542
 Error regexp RegexpSingleline Line has trailing spaces. 546
 Error misc FinalParameters Parameter value should be final. 548
 Error regexp RegexpSingleline Line has trailing spaces. 554
 Error regexp RegexpSingleline Line has trailing spaces. 558
 Error regexp RegexpSingleline Line has trailing spaces. 566
 Error regexp RegexpSingleline Line has trailing spaces. 570
 Error misc FinalParameters Parameter value should be final. 572
 Error regexp RegexpSingleline Line has trailing spaces. 578
 Error regexp RegexpSingleline Line has trailing spaces. 582
 Error regexp RegexpSingleline Line has trailing spaces. 590
 Error regexp RegexpSingleline Line has trailing spaces. 594
 Error misc FinalParameters Parameter value should be final. 596
 Error regexp RegexpSingleline Line has trailing spaces. 602
 Error regexp RegexpSingleline Line has trailing spaces. 606
 Error regexp RegexpSingleline Line has trailing spaces. 614
 Error regexp RegexpSingleline Line has trailing spaces. 618
 Error misc FinalParameters Parameter value should be final. 620
 Error regexp RegexpSingleline Line has trailing spaces. 626
 Error regexp RegexpSingleline Line has trailing spaces. 630
 Error regexp RegexpSingleline Line has trailing spaces. 638
 Error regexp RegexpSingleline Line has trailing spaces. 642
 Error misc FinalParameters Parameter value should be final. 644
 Error regexp RegexpSingleline Line has trailing spaces. 650
 Error regexp RegexpSingleline Line has trailing spaces. 654
 Error regexp RegexpSingleline Line has trailing spaces. 662
 Error regexp RegexpSingleline Line has trailing spaces. 666
 Error misc FinalParameters Parameter value should be final. 668
 Error regexp RegexpSingleline Line has trailing spaces. 674
 Error regexp RegexpSingleline Line has trailing spaces. 678
 Error regexp RegexpSingleline Line has trailing spaces. 686
 Error regexp RegexpSingleline Line has trailing spaces. 690
 Error misc FinalParameters Parameter value should be final. 692
 Error regexp RegexpSingleline Line has trailing spaces. 698
 Error regexp RegexpSingleline Line has trailing spaces. 702
 Error regexp RegexpSingleline Line has trailing spaces. 710
 Error regexp RegexpSingleline Line has trailing spaces. 714
 Error misc FinalParameters Parameter value should be final. 716
 Error regexp RegexpSingleline Line has trailing spaces. 722
 Error regexp RegexpSingleline Line has trailing spaces. 726
 Error regexp RegexpSingleline Line has trailing spaces. 734
 Error regexp RegexpSingleline Line has trailing spaces. 738
 Error misc FinalParameters Parameter value should be final. 740
 Error regexp RegexpSingleline Line has trailing spaces. 746
 Error regexp RegexpSingleline Line has trailing spaces. 750
 Error regexp RegexpSingleline Line has trailing spaces. 758
 Error regexp RegexpSingleline Line has trailing spaces. 762
 Error misc FinalParameters Parameter value should be final. 764
 Error regexp RegexpSingleline Line has trailing spaces. 770
 Error regexp RegexpSingleline Line has trailing spaces. 774
 Error regexp RegexpSingleline Line has trailing spaces. 782
 Error regexp RegexpSingleline Line has trailing spaces. 786
 Error misc FinalParameters Parameter value should be final. 788
 Error regexp RegexpSingleline Line has trailing spaces. 794
 Error regexp RegexpSingleline Line has trailing spaces. 798
 Error regexp RegexpSingleline Line has trailing spaces. 806
 Error regexp RegexpSingleline Line has trailing spaces. 810
 Error misc FinalParameters Parameter value should be final. 812
 Error regexp RegexpSingleline Line has trailing spaces. 818
 Error regexp RegexpSingleline Line has trailing spaces. 822
 Error regexp RegexpSingleline Line has trailing spaces. 830
 Error regexp RegexpSingleline Line has trailing spaces. 834
 Error misc FinalParameters Parameter value should be final. 836
 Error regexp RegexpSingleline Line has trailing spaces. 842
 Error regexp RegexpSingleline Line has trailing spaces. 846
 Error regexp RegexpSingleline Line has trailing spaces. 854
 Error regexp RegexpSingleline Line has trailing spaces. 858
 Error misc FinalParameters Parameter value should be final. 860
 Error regexp RegexpSingleline Line has trailing spaces. 866
 Error regexp RegexpSingleline Line has trailing spaces. 870
 Error regexp RegexpSingleline Line has trailing spaces. 878
 Error regexp RegexpSingleline Line has trailing spaces. 882
 Error misc FinalParameters Parameter value should be final. 884
 Error regexp RegexpSingleline Line has trailing spaces. 890
 Error regexp RegexpSingleline Line has trailing spaces. 894
 Error regexp RegexpSingleline Line has trailing spaces. 902
 Error regexp RegexpSingleline Line has trailing spaces. 906
 Error misc FinalParameters Parameter value should be final. 908
 Error regexp RegexpSingleline Line has trailing spaces. 914
 Error regexp RegexpSingleline Line has trailing spaces. 918
 Error regexp RegexpSingleline Line has trailing spaces. 926
 Error regexp RegexpSingleline Line has trailing spaces. 930
 Error misc FinalParameters Parameter value should be final. 932
 Error regexp RegexpSingleline Line has trailing spaces. 938
 Error regexp RegexpSingleline Line has trailing spaces. 942
 Error regexp RegexpSingleline Line has trailing spaces. 950
 Error regexp RegexpSingleline Line has trailing spaces. 954
 Error misc FinalParameters Parameter value should be final. 956
 Error regexp RegexpSingleline Line has trailing spaces. 962
 Error regexp RegexpSingleline Line has trailing spaces. 966
 Error regexp RegexpSingleline Line has trailing spaces. 974
 Error regexp RegexpSingleline Line has trailing spaces. 978
 Error misc FinalParameters Parameter value should be final. 980
 Error regexp RegexpSingleline Line has trailing spaces. 986
 Error regexp RegexpSingleline Line has trailing spaces. 990
 Error regexp RegexpSingleline Line has trailing spaces. 998
 Error regexp RegexpSingleline Line has trailing spaces. 1002
 Error misc FinalParameters Parameter value should be final. 1004
 Error regexp RegexpSingleline Line has trailing spaces. 1010
 Error regexp RegexpSingleline Line has trailing spaces. 1014
 Error regexp RegexpSingleline Line has trailing spaces. 1022
 Error regexp RegexpSingleline Line has trailing spaces. 1026
 Error misc FinalParameters Parameter value should be final. 1028
 Error regexp RegexpSingleline Line has trailing spaces. 1035
 Error sizes LineLength Line is longer than 80 characters (found 99). 1036
 Error regexp RegexpSingleline Line has trailing spaces. 1037
 Error sizes LineLength Line is longer than 80 characters (found 99). 1043
 Error regexp RegexpSingleline Line has trailing spaces. 1049
 Error regexp RegexpSingleline Line has trailing spaces. 1050
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 1058
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 1060
 Error javadoc JavadocVariable Missing a Javadoc comment. 1061
 Error design VisibilityModifier Variable 'company' must be private and have accessor methods. 1061
 Error regexp RegexpSingleline Line has trailing spaces. 1065
 Error sizes LineLength Line is longer than 80 characters (found 87). 1070
 Error regexp RegexpSingleline Line has trailing spaces. 1071
 Error regexp RegexpSingleline Line has trailing spaces. 1077
 Error regexp RegexpSingleline Line has trailing spaces. 1078
 Error regexp RegexpSingleline Line has trailing spaces. 1082
 Error regexp RegexpSingleline Line has trailing spaces. 1083
 Error javadoc JavadocMethod Expected an @return tag. 1085
 Error regexp RegexpSingleline Line has trailing spaces. 1097
 Error sizes LineLength Line is longer than 80 characters (found 99). 1098
 Error regexp RegexpSingleline Line has trailing spaces. 1099
 Error sizes LineLength Line is longer than 80 characters (found 108). 1105
 Error regexp RegexpSingleline Line has trailing spaces. 1111
 Error regexp RegexpSingleline Line has trailing spaces. 1112
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 1120
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 1122
 Error javadoc JavadocVariable Missing a Javadoc comment. 1123
 Error design VisibilityModifier Variable 'location' must be private and have accessor methods. 1123
 Error regexp RegexpSingleline Line has trailing spaces. 1127
 Error sizes LineLength Line is longer than 80 characters (found 88). 1132
 Error regexp RegexpSingleline Line has trailing spaces. 1133
 Error regexp RegexpSingleline Line has trailing spaces. 1139
 Error regexp RegexpSingleline Line has trailing spaces. 1140
 Error regexp RegexpSingleline Line has trailing spaces. 1144
 Error regexp RegexpSingleline Line has trailing spaces. 1145
 Error javadoc JavadocMethod Expected an @return tag. 1147
 Error regexp RegexpSingleline Line has trailing spaces. 1159
 Error sizes LineLength Line is longer than 80 characters (found 99). 1160
 Error regexp RegexpSingleline Line has trailing spaces. 1161
 Error sizes LineLength Line is longer than 80 characters (found 134). 1167
 Error regexp RegexpSingleline Line has trailing spaces. 1173
 Error regexp RegexpSingleline Line has trailing spaces. 1174
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 1182
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 1184
 Error javadoc JavadocVariable Missing a Javadoc comment. 1185
 Error design VisibilityModifier Variable 'outboundUrl' must be private and have accessor methods. 1185
 Error regexp RegexpSingleline Line has trailing spaces. 1189
 Error sizes LineLength Line is longer than 80 characters (found 91). 1194
 Error regexp RegexpSingleline Line has trailing spaces. 1195
 Error regexp RegexpSingleline Line has trailing spaces. 1201
 Error regexp RegexpSingleline Line has trailing spaces. 1202
 Error regexp RegexpSingleline Line has trailing spaces. 1206
 Error regexp RegexpSingleline Line has trailing spaces. 1207
 Error javadoc JavadocMethod Expected an @return tag. 1209
 Error regexp RegexpSingleline Line has trailing spaces. 1221
 Error sizes LineLength Line is longer than 80 characters (found 99). 1222
 Error regexp RegexpSingleline Line has trailing spaces. 1223
 Error sizes LineLength Line is longer than 80 characters (found 126). 1229
 Error regexp RegexpSingleline Line has trailing spaces. 1235
 Error regexp RegexpSingleline Line has trailing spaces. 1236
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 1244
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 1246
 Error javadoc JavadocVariable Missing a Javadoc comment. 1247
 Error design VisibilityModifier Variable 'tag' must be private and have accessor methods. 1247
 Error regexp RegexpSingleline Line has trailing spaces. 1251
 Error sizes LineLength Line is longer than 80 characters (found 83). 1256
 Error regexp RegexpSingleline Line has trailing spaces. 1257
 Error regexp RegexpSingleline Line has trailing spaces. 1263
 Error regexp RegexpSingleline Line has trailing spaces. 1264
 Error regexp RegexpSingleline Line has trailing spaces. 1268
 Error regexp RegexpSingleline Line has trailing spaces. 1269
 Error javadoc JavadocMethod Expected an @return tag. 1271
 Error regexp RegexpSingleline Line has trailing spaces. 1283
 Error sizes LineLength Line is longer than 80 characters (found 99). 1284
 Error regexp RegexpSingleline Line has trailing spaces. 1285
 Error sizes LineLength Line is longer than 80 characters (found 95). 1291
 Error regexp RegexpSingleline Line has trailing spaces. 1297
 Error regexp RegexpSingleline Line has trailing spaces. 1298
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 1306
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 1308
 Error javadoc JavadocVariable Missing a Javadoc comment. 1309
 Error design VisibilityModifier Variable 'topic' must be private and have accessor methods. 1309
 Error regexp RegexpSingleline Line has trailing spaces. 1313
 Error sizes LineLength Line is longer than 80 characters (found 85). 1318
 Error regexp RegexpSingleline Line has trailing spaces. 1319
 Error regexp RegexpSingleline Line has trailing spaces. 1325
 Error regexp RegexpSingleline Line has trailing spaces. 1326
 Error regexp RegexpSingleline Line has trailing spaces. 1330
 Error regexp RegexpSingleline Line has trailing spaces. 1331
 Error javadoc JavadocMethod Expected an @return tag. 1333

com/moreover/api/ArticleLocation.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 87). 28
 Error sizes LineLength Line is longer than 80 characters (found 87). 29
 Error sizes LineLength Line is longer than 80 characters (found 88). 30
 Error sizes LineLength Line is longer than 80 characters (found 91). 31
 Error sizes LineLength Line is longer than 80 characters (found 93). 32
 Error sizes LineLength Line is longer than 80 characters (found 89). 34
 Error sizes LineLength Line is longer than 80 characters (found 92). 35
 Error sizes LineLength Line is longer than 80 characters (found 91). 37
 Error sizes LineLength Line is longer than 80 characters (found 92). 38
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 63
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error design VisibilityModifier Variable 'type' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'clazz' must be private and have accessor methods. 71
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error design VisibilityModifier Variable 'mentions' must be private and have accessor methods. 73
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error design VisibilityModifier Variable 'confidence' must be private and have accessor methods. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error design VisibilityModifier Variable 'country' must be private and have accessor methods. 77
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error design VisibilityModifier Variable 'region' must be private and have accessor methods. 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 80
 Error design VisibilityModifier Variable 'subregion' must be private and have accessor methods. 81
 Error javadoc JavadocVariable Missing a Javadoc comment. 82
 Error design VisibilityModifier Variable 'state' must be private and have accessor methods. 83
 Error javadoc JavadocVariable Missing a Javadoc comment. 84
 Error design VisibilityModifier Variable 'latitude' must be private and have accessor methods. 85
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error design VisibilityModifier Variable 'longitude' must be private and have accessor methods. 87
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error misc FinalParameters Parameter value should be final. 109
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 131
 Error misc FinalParameters Parameter value should be final. 133
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error regexp RegexpSingleline Line has trailing spaces. 143
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 155
 Error misc FinalParameters Parameter value should be final. 157
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error regexp RegexpSingleline Line has trailing spaces. 167
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 179
 Error misc FinalParameters Parameter value should be final. 181
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error regexp RegexpSingleline Line has trailing spaces. 191
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 203
 Error misc FinalParameters Parameter value should be final. 205
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error regexp RegexpSingleline Line has trailing spaces. 215
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 227
 Error misc FinalParameters Parameter value should be final. 229
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error regexp RegexpSingleline Line has trailing spaces. 239
 Error regexp RegexpSingleline Line has trailing spaces. 247
 Error regexp RegexpSingleline Line has trailing spaces. 251
 Error misc FinalParameters Parameter value should be final. 253
 Error regexp RegexpSingleline Line has trailing spaces. 259
 Error regexp RegexpSingleline Line has trailing spaces. 263
 Error regexp RegexpSingleline Line has trailing spaces. 271
 Error regexp RegexpSingleline Line has trailing spaces. 275
 Error misc FinalParameters Parameter value should be final. 277
 Error regexp RegexpSingleline Line has trailing spaces. 283
 Error regexp RegexpSingleline Line has trailing spaces. 287
 Error regexp RegexpSingleline Line has trailing spaces. 295
 Error regexp RegexpSingleline Line has trailing spaces. 299
 Error misc FinalParameters Parameter value should be final. 301
 Error regexp RegexpSingleline Line has trailing spaces. 307
 Error regexp RegexpSingleline Line has trailing spaces. 311
 Error regexp RegexpSingleline Line has trailing spaces. 319
 Error regexp RegexpSingleline Line has trailing spaces. 323
 Error misc FinalParameters Parameter value should be final. 325
 Error regexp RegexpSingleline Line has trailing spaces. 331
 Error regexp RegexpSingleline Line has trailing spaces. 335
 Error regexp RegexpSingleline Line has trailing spaces. 343
 Error regexp RegexpSingleline Line has trailing spaces. 347
 Error misc FinalParameters Parameter value should be final. 349

com/moreover/api/ArticlePublishingPlatform.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 89). 28
 Error sizes LineLength Line is longer than 80 characters (found 91). 29
 Error sizes LineLength Line is longer than 80 characters (found 98). 30
 Error sizes LineLength Line is longer than 80 characters (found 100). 31
 Error sizes LineLength Line is longer than 80 characters (found 93). 32
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 51
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error design VisibilityModifier Variable 'itemId' must be private and have accessor methods. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error design VisibilityModifier Variable 'statusId' must be private and have accessor methods. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error design VisibilityModifier Variable 'inReplyToUserId' must be private and have accessor methods. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error design VisibilityModifier Variable 'inReplyToStatusId' must be private and have accessor methods. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error design VisibilityModifier Variable 'totalViews' must be private and have accessor methods. 63
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error misc FinalParameters Parameter value should be final. 85
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error misc FinalParameters Parameter value should be final. 109
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 131
 Error misc FinalParameters Parameter value should be final. 133
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error regexp RegexpSingleline Line has trailing spaces. 143
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 155
 Error misc FinalParameters Parameter value should be final. 157
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error regexp RegexpSingleline Line has trailing spaces. 167
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 179
 Error misc FinalParameters Parameter value should be final. 181

com/moreover/api/ArticlesResponse.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 95). 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error sizes LineLength Line is longer than 80 characters (found 103). 29
 Error sizes LineLength Line is longer than 80 characters (found 108). 30
 Error sizes LineLength Line is longer than 80 characters (found 108). 31
 Error sizes LineLength Line is longer than 80 characters (found 113). 32
 Error sizes LineLength Line is longer than 80 characters (found 85). 36
 Error sizes LineLength Line is longer than 80 characters (found 105). 38
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 62
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 65
 Error design VisibilityModifier Variable 'status' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'messageCode' must be private and have accessor methods. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error design VisibilityModifier Variable 'userMessage' must be private and have accessor methods. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error design VisibilityModifier Variable 'developerMessage' must be private and have accessor methods. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error design VisibilityModifier Variable 'articles' must be private and have accessor methods. 69
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error regexp RegexpSingleline Line has trailing spaces. 85
 Error regexp RegexpSingleline Line has trailing spaces. 89
 Error misc FinalParameters Parameter value should be final. 91
 Error regexp RegexpSingleline Line has trailing spaces. 97
 Error regexp RegexpSingleline Line has trailing spaces. 101
 Error regexp RegexpSingleline Line has trailing spaces. 109
 Error regexp RegexpSingleline Line has trailing spaces. 113
 Error misc FinalParameters Parameter value should be final. 115
 Error regexp RegexpSingleline Line has trailing spaces. 121
 Error regexp RegexpSingleline Line has trailing spaces. 125
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error regexp RegexpSingleline Line has trailing spaces. 137
 Error misc FinalParameters Parameter value should be final. 139
 Error regexp RegexpSingleline Line has trailing spaces. 145
 Error regexp RegexpSingleline Line has trailing spaces. 149
 Error regexp RegexpSingleline Line has trailing spaces. 157
 Error regexp RegexpSingleline Line has trailing spaces. 161
 Error misc FinalParameters Parameter value should be final. 163
 Error regexp RegexpSingleline Line has trailing spaces. 169
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error regexp RegexpSingleline Line has trailing spaces. 181
 Error regexp RegexpSingleline Line has trailing spaces. 185
 Error misc FinalParameters Parameter value should be final. 187
 Error regexp RegexpSingleline Line has trailing spaces. 194
 Error sizes LineLength Line is longer than 80 characters (found 99). 195
 Error regexp RegexpSingleline Line has trailing spaces. 196
 Error sizes LineLength Line is longer than 80 characters (found 99). 202
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error regexp RegexpSingleline Line has trailing spaces. 209
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 217
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 219
 Error javadoc JavadocVariable Missing a Javadoc comment. 220
 Error design VisibilityModifier Variable 'article' must be private and have accessor methods. 220
 Error regexp RegexpSingleline Line has trailing spaces. 224
 Error sizes LineLength Line is longer than 80 characters (found 87). 229
 Error regexp RegexpSingleline Line has trailing spaces. 230
 Error regexp RegexpSingleline Line has trailing spaces. 236
 Error regexp RegexpSingleline Line has trailing spaces. 237
 Error regexp RegexpSingleline Line has trailing spaces. 241
 Error regexp RegexpSingleline Line has trailing spaces. 242
 Error javadoc JavadocMethod Expected an @return tag. 244

com/moreover/api/AudioOrVideo.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 86). 28
 Error sizes LineLength Line is longer than 80 characters (found 91). 29
 Error sizes LineLength Line is longer than 80 characters (found 90). 30
 Error sizes LineLength Line is longer than 80 characters (found 91). 31
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 49
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error design VisibilityModifier Variable 'url' must be private and have accessor methods. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error design VisibilityModifier Variable 'mimeType' must be private and have accessor methods. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error design VisibilityModifier Variable 'caption' must be private and have accessor methods. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error design VisibilityModifier Variable 'duration' must be private and have accessor methods. 59
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error misc FinalParameters Parameter value should be final. 81
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error misc FinalParameters Parameter value should be final. 105
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error misc FinalParameters Parameter value should be final. 129
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error misc FinalParameters Parameter value should be final. 153

com/moreover/api/Author.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 87). 28
 Error sizes LineLength Line is longer than 80 characters (found 90). 29
 Error sizes LineLength Line is longer than 80 characters (found 88). 30
 Error sizes LineLength Line is longer than 80 characters (found 94). 31
 Error sizes LineLength Line is longer than 80 characters (found 97). 32
 Error sizes LineLength Line is longer than 80 characters (found 87). 33
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 53
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error design VisibilityModifier Variable 'homeUrl' must be private and have accessor methods. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error design VisibilityModifier Variable 'email' must be private and have accessor methods. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error design VisibilityModifier Variable 'description' must be private and have accessor methods. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'dateLastActive' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'publishingPlatform' must be private and have accessor methods. 67
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error misc FinalParameters Parameter value should be final. 89
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error misc FinalParameters Parameter value should be final. 113
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 131
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error misc FinalParameters Parameter value should be final. 137
 Error regexp RegexpSingleline Line has trailing spaces. 143
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 155
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error misc FinalParameters Parameter value should be final. 161
 Error regexp RegexpSingleline Line has trailing spaces. 167
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 179
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter value should be final. 185
 Error regexp RegexpSingleline Line has trailing spaces. 191
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 203
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error misc FinalParameters Parameter value should be final. 209

com/moreover/api/AuthorPublishingPlatform.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 91). 28
 Error sizes LineLength Line is longer than 80 characters (found 89). 29
 Error sizes LineLength Line is longer than 80 characters (found 96). 30
 Error sizes LineLength Line is longer than 80 characters (found 93). 31
 Error sizes LineLength Line is longer than 80 characters (found 97). 32
 Error sizes LineLength Line is longer than 80 characters (found 97). 33
 Error sizes LineLength Line is longer than 80 characters (found 93). 34
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 55
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error design VisibilityModifier Variable 'userName' must be private and have accessor methods. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error design VisibilityModifier Variable 'userId' must be private and have accessor methods. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error design VisibilityModifier Variable 'statusesCount' must be private and have accessor methods. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'totalViews' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'followingCount' must be private and have accessor methods. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error design VisibilityModifier Variable 'followersCount' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'kloutScore' must be private and have accessor methods. 71
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error misc FinalParameters Parameter value should be final. 93
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error misc FinalParameters Parameter value should be final. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error misc FinalParameters Parameter value should be final. 141
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error misc FinalParameters Parameter value should be final. 165
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error misc FinalParameters Parameter value should be final. 189
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error misc FinalParameters Parameter value should be final. 213
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 231
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter value should be final. 237

com/moreover/api/Broadcast.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 95). 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error sizes LineLength Line is longer than 80 characters (found 93). 30
 Error sizes LineLength Line is longer than 80 characters (found 98). 31
 Error sizes LineLength Line is longer than 80 characters (found 88). 32
 Error sizes LineLength Line is longer than 80 characters (found 85). 36
 Error sizes LineLength Line is longer than 80 characters (found 99). 38
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 61
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'marketName' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'nationalNetwork' must be private and have accessor methods. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error design VisibilityModifier Variable 'title' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'lines' must be private and have accessor methods. 70
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error misc FinalParameters Parameter value should be final. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 102
 Error regexp RegexpSingleline Line has trailing spaces. 110
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error misc FinalParameters Parameter value should be final. 116
 Error regexp RegexpSingleline Line has trailing spaces. 122
 Error regexp RegexpSingleline Line has trailing spaces. 126
 Error regexp RegexpSingleline Line has trailing spaces. 134
 Error regexp RegexpSingleline Line has trailing spaces. 138
 Error misc FinalParameters Parameter value should be final. 140
 Error regexp RegexpSingleline Line has trailing spaces. 146
 Error regexp RegexpSingleline Line has trailing spaces. 150
 Error regexp RegexpSingleline Line has trailing spaces. 158
 Error regexp RegexpSingleline Line has trailing spaces. 162
 Error misc FinalParameters Parameter value should be final. 164
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error sizes LineLength Line is longer than 80 characters (found 99). 172
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error sizes LineLength Line is longer than 80 characters (found 93). 179
 Error regexp RegexpSingleline Line has trailing spaces. 185
 Error regexp RegexpSingleline Line has trailing spaces. 186
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 194
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 196
 Error javadoc JavadocVariable Missing a Javadoc comment. 197
 Error design VisibilityModifier Variable 'line' must be private and have accessor methods. 197
 Error regexp RegexpSingleline Line has trailing spaces. 201
 Error sizes LineLength Line is longer than 80 characters (found 84). 206
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error regexp RegexpSingleline Line has trailing spaces. 213
 Error regexp RegexpSingleline Line has trailing spaces. 214
 Error regexp RegexpSingleline Line has trailing spaces. 218
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error javadoc JavadocMethod Expected an @return tag. 221

com/moreover/api/Company.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 87). 28
 Error sizes LineLength Line is longer than 80 characters (found 89). 29
 Error sizes LineLength Line is longer than 80 characters (found 91). 30
 Error sizes LineLength Line is longer than 80 characters (found 87). 31
 Error sizes LineLength Line is longer than 80 characters (found 102). 32
 Error sizes LineLength Line is longer than 80 characters (found 90). 33
 Error sizes LineLength Line is longer than 80 characters (found 92). 34
 Error sizes LineLength Line is longer than 80 characters (found 91). 35
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 57
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error design VisibilityModifier Variable 'symbol' must be private and have accessor methods. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'exchange' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'isin' must be private and have accessor methods. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error design VisibilityModifier Variable 'cusip' must be private and have accessor methods. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error design VisibilityModifier Variable 'titleCount' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'contentCount' must be private and have accessor methods. 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error design VisibilityModifier Variable 'primary' must be private and have accessor methods. 71
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error misc FinalParameters Parameter value should be final. 93
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error misc FinalParameters Parameter value should be final. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error misc FinalParameters Parameter value should be final. 141
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error misc FinalParameters Parameter value should be final. 165
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error misc FinalParameters Parameter value should be final. 189
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error javadoc JavadocMethod Expected an @return tag. 197
 Error regexp RegexpSingleline Line has trailing spaces. 203
 Error misc FinalParameters Parameter value should be final. 205
 Error javadoc JavadocMethod Expected @param tag for 'value'. 205
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error javadoc JavadocMethod Expected an @return tag. 213
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error misc FinalParameters Parameter value should be final. 221
 Error javadoc JavadocMethod Expected @param tag for 'value'. 221
 Error regexp RegexpSingleline Line has trailing spaces. 227
 Error javadoc JavadocMethod Expected an @return tag. 229
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter value should be final. 237
 Error javadoc JavadocMethod Expected @param tag for 'value'. 237

com/moreover/api/Country.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error sizes LineLength Line is longer than 80 characters (found 95). 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 107). 27
 Error sizes LineLength Line is longer than 80 characters (found 105). 28
 Error sizes LineLength Line is longer than 80 characters (found 104). 29
 Error sizes LineLength Line is longer than 80 characters (found 101). 30
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 48
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error design VisibilityModifier Variable 'confidence' must be private and have accessor methods. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error design VisibilityModifier Variable 'fipsCode' must be private and have accessor methods. 52
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error design VisibilityModifier Variable 'isoCode' must be private and have accessor methods. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 54
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error misc FinalParameters Parameter value should be final. 76
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error regexp RegexpSingleline Line has trailing spaces. 94
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error misc FinalParameters Parameter value should be final. 100
 Error regexp RegexpSingleline Line has trailing spaces. 106
 Error regexp RegexpSingleline Line has trailing spaces. 110
 Error regexp RegexpSingleline Line has trailing spaces. 118
 Error regexp RegexpSingleline Line has trailing spaces. 122
 Error misc FinalParameters Parameter value should be final. 124
 Error regexp RegexpSingleline Line has trailing spaces. 130
 Error regexp RegexpSingleline Line has trailing spaces. 134
 Error regexp RegexpSingleline Line has trailing spaces. 142
 Error regexp RegexpSingleline Line has trailing spaces. 146
 Error misc FinalParameters Parameter value should be final. 148

com/moreover/api/Feed.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 95). 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error sizes LineLength Line is longer than 80 characters (found 87). 31
 Error sizes LineLength Line is longer than 80 characters (found 100). 32
 Error sizes LineLength Line is longer than 80 characters (found 92). 33
 Error sizes LineLength Line is longer than 80 characters (found 101). 34
 Error sizes LineLength Line is longer than 80 characters (found 98). 35
 Error sizes LineLength Line is longer than 80 characters (found 92). 36
 Error sizes LineLength Line is longer than 80 characters (found 94). 37
 Error sizes LineLength Line is longer than 80 characters (found 85). 41
 Error sizes LineLength Line is longer than 80 characters (found 132). 43
 Error sizes LineLength Line is longer than 80 characters (found 91). 49
 Error sizes LineLength Line is longer than 80 characters (found 92). 50
 Error sizes LineLength Line is longer than 80 characters (found 91). 51
 Error sizes LineLength Line is longer than 80 characters (found 93). 52
 Error sizes LineLength Line is longer than 80 characters (found 94). 54
 Error sizes LineLength Line is longer than 80 characters (found 85). 58
 Error sizes LineLength Line is longer than 80 characters (found 138). 60
 Error sizes LineLength Line is longer than 80 characters (found 85). 69
 Error sizes LineLength Line is longer than 80 characters (found 143). 71
 Error sizes LineLength Line is longer than 80 characters (found 88). 77
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 84
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 109
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 111
 Error javadoc JavadocVariable Missing a Javadoc comment. 112
 Error design VisibilityModifier Variable 'id' must be private and have accessor methods. 113
 Error javadoc JavadocVariable Missing a Javadoc comment. 114
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 115
 Error javadoc JavadocVariable Missing a Javadoc comment. 116
 Error design VisibilityModifier Variable 'url' must be private and have accessor methods. 116
 Error javadoc JavadocVariable Missing a Javadoc comment. 117
 Error design VisibilityModifier Variable 'mediaType' must be private and have accessor methods. 118
 Error javadoc JavadocVariable Missing a Javadoc comment. 119
 Error design VisibilityModifier Variable 'publishingPlatform' must be private and have accessor methods. 120
 Error javadoc JavadocVariable Missing a Javadoc comment. 121
 Error design VisibilityModifier Variable 'idFromPublisher' must be private and have accessor methods. 122
 Error javadoc JavadocVariable Missing a Javadoc comment. 123
 Error design VisibilityModifier Variable 'generator' must be private and have accessor methods. 124
 Error javadoc JavadocVariable Missing a Javadoc comment. 125
 Error design VisibilityModifier Variable 'description' must be private and have accessor methods. 126
 Error javadoc JavadocVariable Missing a Javadoc comment. 127
 Error design VisibilityModifier Variable 'tags' must be private and have accessor methods. 127
 Error javadoc JavadocVariable Missing a Javadoc comment. 128
 Error design VisibilityModifier Variable 'imageUrl' must be private and have accessor methods. 129
 Error javadoc JavadocVariable Missing a Javadoc comment. 130
 Error design VisibilityModifier Variable 'copyright' must be private and have accessor methods. 131
 Error javadoc JavadocVariable Missing a Javadoc comment. 132
 Error design VisibilityModifier Variable 'language' must be private and have accessor methods. 133
 Error javadoc JavadocVariable Missing a Javadoc comment. 134
 Error design VisibilityModifier Variable 'dataFormat' must be private and have accessor methods. 135
 Error javadoc JavadocVariable Missing a Javadoc comment. 136
 Error design VisibilityModifier Variable 'rank' must be private and have accessor methods. 137
 Error javadoc JavadocVariable Missing a Javadoc comment. 138
 Error design VisibilityModifier Variable 'inWhiteList' must be private and have accessor methods. 139
 Error javadoc JavadocVariable Missing a Javadoc comment. 140
 Error design VisibilityModifier Variable 'autoTopics' must be private and have accessor methods. 140
 Error javadoc JavadocVariable Missing a Javadoc comment. 141
 Error design VisibilityModifier Variable 'editorialTopics' must be private and have accessor methods. 141
 Error javadoc JavadocVariable Missing a Javadoc comment. 142
 Error design VisibilityModifier Variable 'genre' must be private and have accessor methods. 143
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error misc FinalParameters Parameter value should be final. 165
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error misc FinalParameters Parameter value should be final. 189
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error misc FinalParameters Parameter value should be final. 213
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 231
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter value should be final. 237
 Error regexp RegexpSingleline Line has trailing spaces. 243
 Error regexp RegexpSingleline Line has trailing spaces. 247
 Error regexp RegexpSingleline Line has trailing spaces. 255
 Error regexp RegexpSingleline Line has trailing spaces. 259
 Error misc FinalParameters Parameter value should be final. 261
 Error regexp RegexpSingleline Line has trailing spaces. 267
 Error regexp RegexpSingleline Line has trailing spaces. 271
 Error regexp RegexpSingleline Line has trailing spaces. 279
 Error regexp RegexpSingleline Line has trailing spaces. 283
 Error misc FinalParameters Parameter value should be final. 285
 Error regexp RegexpSingleline Line has trailing spaces. 291
 Error regexp RegexpSingleline Line has trailing spaces. 295
 Error regexp RegexpSingleline Line has trailing spaces. 303
 Error regexp RegexpSingleline Line has trailing spaces. 307
 Error misc FinalParameters Parameter value should be final. 309
 Error regexp RegexpSingleline Line has trailing spaces. 315
 Error regexp RegexpSingleline Line has trailing spaces. 319
 Error regexp RegexpSingleline Line has trailing spaces. 327
 Error regexp RegexpSingleline Line has trailing spaces. 331
 Error misc FinalParameters Parameter value should be final. 333
 Error regexp RegexpSingleline Line has trailing spaces. 339
 Error regexp RegexpSingleline Line has trailing spaces. 343
 Error regexp RegexpSingleline Line has trailing spaces. 351
 Error regexp RegexpSingleline Line has trailing spaces. 355
 Error misc FinalParameters Parameter value should be final. 357
 Error regexp RegexpSingleline Line has trailing spaces. 363
 Error regexp RegexpSingleline Line has trailing spaces. 367
 Error regexp RegexpSingleline Line has trailing spaces. 375
 Error regexp RegexpSingleline Line has trailing spaces. 379
 Error misc FinalParameters Parameter value should be final. 381
 Error regexp RegexpSingleline Line has trailing spaces. 387
 Error regexp RegexpSingleline Line has trailing spaces. 391
 Error regexp RegexpSingleline Line has trailing spaces. 399
 Error regexp RegexpSingleline Line has trailing spaces. 403
 Error misc FinalParameters Parameter value should be final. 405
 Error regexp RegexpSingleline Line has trailing spaces. 411
 Error regexp RegexpSingleline Line has trailing spaces. 415
 Error regexp RegexpSingleline Line has trailing spaces. 423
 Error regexp RegexpSingleline Line has trailing spaces. 427
 Error misc FinalParameters Parameter value should be final. 429
 Error regexp RegexpSingleline Line has trailing spaces. 435
 Error regexp RegexpSingleline Line has trailing spaces. 439
 Error regexp RegexpSingleline Line has trailing spaces. 447
 Error regexp RegexpSingleline Line has trailing spaces. 451
 Error misc FinalParameters Parameter value should be final. 453
 Error regexp RegexpSingleline Line has trailing spaces. 459
 Error regexp RegexpSingleline Line has trailing spaces. 463
 Error regexp RegexpSingleline Line has trailing spaces. 471
 Error regexp RegexpSingleline Line has trailing spaces. 475
 Error misc FinalParameters Parameter value should be final. 477
 Error regexp RegexpSingleline Line has trailing spaces. 483
 Error regexp RegexpSingleline Line has trailing spaces. 487
 Error regexp RegexpSingleline Line has trailing spaces. 495
 Error regexp RegexpSingleline Line has trailing spaces. 499
 Error misc FinalParameters Parameter value should be final. 501
 Error regexp RegexpSingleline Line has trailing spaces. 507
 Error regexp RegexpSingleline Line has trailing spaces. 511
 Error regexp RegexpSingleline Line has trailing spaces. 519
 Error regexp RegexpSingleline Line has trailing spaces. 523
 Error misc FinalParameters Parameter value should be final. 525
 Error regexp RegexpSingleline Line has trailing spaces. 531
 Error regexp RegexpSingleline Line has trailing spaces. 535
 Error regexp RegexpSingleline Line has trailing spaces. 543
 Error regexp RegexpSingleline Line has trailing spaces. 547
 Error misc FinalParameters Parameter value should be final. 549
 Error regexp RegexpSingleline Line has trailing spaces. 555
 Error regexp RegexpSingleline Line has trailing spaces. 559
 Error regexp RegexpSingleline Line has trailing spaces. 567
 Error regexp RegexpSingleline Line has trailing spaces. 571
 Error misc FinalParameters Parameter value should be final. 573
 Error regexp RegexpSingleline Line has trailing spaces. 580
 Error sizes LineLength Line is longer than 80 characters (found 99). 581
 Error regexp RegexpSingleline Line has trailing spaces. 582
 Error sizes LineLength Line is longer than 80 characters (found 132). 588
 Error regexp RegexpSingleline Line has trailing spaces. 594
 Error regexp RegexpSingleline Line has trailing spaces. 595
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 603
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 605
 Error javadoc JavadocVariable Missing a Javadoc comment. 606
 Error design VisibilityModifier Variable 'autoTopic' must be private and have accessor methods. 606
 Error regexp RegexpSingleline Line has trailing spaces. 610
 Error sizes LineLength Line is longer than 80 characters (found 89). 615
 Error regexp RegexpSingleline Line has trailing spaces. 616
 Error regexp RegexpSingleline Line has trailing spaces. 622
 Error regexp RegexpSingleline Line has trailing spaces. 623
 Error regexp RegexpSingleline Line has trailing spaces. 627
 Error regexp RegexpSingleline Line has trailing spaces. 628
 Error javadoc JavadocMethod Expected an @return tag. 630
 Error regexp RegexpSingleline Line has trailing spaces. 642
 Error sizes LineLength Line is longer than 80 characters (found 99). 643
 Error regexp RegexpSingleline Line has trailing spaces. 644
 Error sizes LineLength Line is longer than 80 characters (found 137). 650
 Error regexp RegexpSingleline Line has trailing spaces. 656
 Error regexp RegexpSingleline Line has trailing spaces. 657
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 665
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 667
 Error javadoc JavadocVariable Missing a Javadoc comment. 668
 Error design VisibilityModifier Variable 'editorialTopic' must be private and have accessor methods. 668
 Error regexp RegexpSingleline Line has trailing spaces. 672
 Error sizes LineLength Line is longer than 80 characters (found 94). 677
 Error regexp RegexpSingleline Line has trailing spaces. 678
 Error regexp RegexpSingleline Line has trailing spaces. 684
 Error regexp RegexpSingleline Line has trailing spaces. 685
 Error regexp RegexpSingleline Line has trailing spaces. 689
 Error regexp RegexpSingleline Line has trailing spaces. 690
 Error javadoc JavadocMethod Expected an @return tag. 692
 Error regexp RegexpSingleline Line has trailing spaces. 704
 Error sizes LineLength Line is longer than 80 characters (found 99). 705
 Error regexp RegexpSingleline Line has trailing spaces. 706
 Error sizes LineLength Line is longer than 80 characters (found 126). 712
 Error regexp RegexpSingleline Line has trailing spaces. 718
 Error regexp RegexpSingleline Line has trailing spaces. 719
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 727
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 729
 Error javadoc JavadocVariable Missing a Javadoc comment. 730
 Error design VisibilityModifier Variable 'tag' must be private and have accessor methods. 730
 Error regexp RegexpSingleline Line has trailing spaces. 734
 Error sizes LineLength Line is longer than 80 characters (found 83). 739
 Error regexp RegexpSingleline Line has trailing spaces. 740
 Error regexp RegexpSingleline Line has trailing spaces. 746
 Error regexp RegexpSingleline Line has trailing spaces. 747
 Error regexp RegexpSingleline Line has trailing spaces. 751
 Error regexp RegexpSingleline Line has trailing spaces. 752
 Error javadoc JavadocMethod Expected an @return tag. 754

com/moreover/api/Harvest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 94). 28
 Error sizes LineLength Line is longer than 80 characters (found 93). 29
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 45
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error design VisibilityModifier Variable 'headlineVia' must be private and have accessor methods. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error design VisibilityModifier Variable 'contentVia' must be private and have accessor methods. 51
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error misc FinalParameters Parameter value should be final. 73
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error misc FinalParameters Parameter value should be final. 97

com/moreover/api/Image.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 86). 28
 Error sizes LineLength Line is longer than 80 characters (found 91). 29
 Error sizes LineLength Line is longer than 80 characters (found 90). 30
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 47
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error design VisibilityModifier Variable 'url' must be private and have accessor methods. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error design VisibilityModifier Variable 'mimeType' must be private and have accessor methods. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error design VisibilityModifier Variable 'caption' must be private and have accessor methods. 55
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error misc FinalParameters Parameter value should be final. 77
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error misc FinalParameters Parameter value should be final. 101
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error misc FinalParameters Parameter value should be final. 125

com/moreover/api/Line.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error sizes LineLength Line is longer than 80 characters (found 95). 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 101). 27
 Error sizes LineLength Line is longer than 80 characters (found 101). 28
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 44
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error design VisibilityModifier Variable 'date' must be private and have accessor methods. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error design VisibilityModifier Variable 'text' must be private and have accessor methods. 48
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter value should be final. 70
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error regexp RegexpSingleline Line has trailing spaces. 80
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error misc FinalParameters Parameter value should be final. 94

com/moreover/api/Media.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 95). 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error sizes LineLength Line is longer than 80 characters (found 98). 29
 Error sizes LineLength Line is longer than 80 characters (found 91). 30
 Error sizes LineLength Line is longer than 80 characters (found 98). 31
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 48
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error design VisibilityModifier Variable 'audio' must be private and have accessor methods. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error design VisibilityModifier Variable 'image' must be private and have accessor methods. 52
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error design VisibilityModifier Variable 'video' must be private and have accessor methods. 53
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error sizes LineLength Line is longer than 80 characters (found 81). 62
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error javadoc JavadocMethod Expected an @return tag. 77
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error sizes LineLength Line is longer than 80 characters (found 81). 91
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 104
 Error javadoc JavadocMethod Expected an @return tag. 106
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error sizes LineLength Line is longer than 80 characters (found 81). 120
 Error regexp RegexpSingleline Line has trailing spaces. 121
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 128
 Error regexp RegexpSingleline Line has trailing spaces. 132
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error javadoc JavadocMethod Expected an @return tag. 135

com/moreover/api/ObjectFactory.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error regexp RegexpSingleline Line has trailing spaces. 24
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error regexp RegexpSingleline Line has trailing spaces. 26
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error regexp RegexpSingleline Line has trailing spaces. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 34
 Error naming ConstantName Name '_Response_QNAME' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 34
 Error javadoc JavadocStyle First sentence should end with a period. 36
 Error sizes LineLength Line is longer than 80 characters (found 130). 37
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error javadoc JavadocStyle First sentence should end with a period. 43
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error javadoc JavadocMethod Expected an @return tag. 47
 Error javadoc JavadocStyle First sentence should end with a period. 51
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error javadoc JavadocMethod Expected an @return tag. 55
 Error javadoc JavadocStyle First sentence should end with a period. 59
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error javadoc JavadocMethod Expected an @return tag. 63
 Error javadoc JavadocStyle First sentence should end with a period. 67
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error javadoc JavadocMethod Expected an @return tag. 71
 Error javadoc JavadocStyle First sentence should end with a period. 75
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error javadoc JavadocMethod Expected an @return tag. 79
 Error javadoc JavadocStyle First sentence should end with a period. 83
 Error regexp RegexpSingleline Line has trailing spaces. 85
 Error javadoc JavadocMethod Expected an @return tag. 87
 Error javadoc JavadocStyle First sentence should end with a period. 91
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error javadoc JavadocMethod Expected an @return tag. 95
 Error javadoc JavadocStyle First sentence should end with a period. 99
 Error regexp RegexpSingleline Line has trailing spaces. 101
 Error javadoc JavadocMethod Expected an @return tag. 103
 Error javadoc JavadocStyle First sentence should end with a period. 107
 Error regexp RegexpSingleline Line has trailing spaces. 109
 Error javadoc JavadocMethod Expected an @return tag. 111
 Error javadoc JavadocStyle First sentence should end with a period. 115
 Error regexp RegexpSingleline Line has trailing spaces. 117
 Error javadoc JavadocMethod Expected an @return tag. 119
 Error javadoc JavadocStyle First sentence should end with a period. 123
 Error regexp RegexpSingleline Line has trailing spaces. 125
 Error javadoc JavadocMethod Expected an @return tag. 127
 Error javadoc JavadocStyle First sentence should end with a period. 131
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error javadoc JavadocMethod Expected an @return tag. 135
 Error javadoc JavadocStyle First sentence should end with a period. 139
 Error regexp RegexpSingleline Line has trailing spaces. 141
 Error javadoc JavadocMethod Expected an @return tag. 143
 Error javadoc JavadocStyle First sentence should end with a period. 147
 Error regexp RegexpSingleline Line has trailing spaces. 149
 Error javadoc JavadocMethod Expected an @return tag. 151
 Error javadoc JavadocStyle First sentence should end with a period. 155
 Error regexp RegexpSingleline Line has trailing spaces. 157
 Error javadoc JavadocMethod Expected an @return tag. 159
 Error javadoc JavadocStyle First sentence should end with a period. 163
 Error regexp RegexpSingleline Line has trailing spaces. 165
 Error javadoc JavadocMethod Expected an @return tag. 167
 Error javadoc JavadocStyle First sentence should end with a period. 171
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error javadoc JavadocMethod Expected an @return tag. 175
 Error javadoc JavadocStyle First sentence should end with a period. 179
 Error regexp RegexpSingleline Line has trailing spaces. 181
 Error javadoc JavadocMethod Expected an @return tag. 183
 Error javadoc JavadocStyle First sentence should end with a period. 187
 Error regexp RegexpSingleline Line has trailing spaces. 189
 Error javadoc JavadocMethod Expected an @return tag. 191
 Error javadoc JavadocStyle First sentence should end with a period. 195
 Error regexp RegexpSingleline Line has trailing spaces. 197
 Error javadoc JavadocMethod Expected an @return tag. 199
 Error javadoc JavadocStyle First sentence should end with a period. 203
 Error regexp RegexpSingleline Line has trailing spaces. 205
 Error javadoc JavadocMethod Expected an @return tag. 207
 Error javadoc JavadocStyle First sentence should end with a period. 211
 Error regexp RegexpSingleline Line has trailing spaces. 213
 Error javadoc JavadocMethod Expected an @return tag. 215
 Error javadoc JavadocStyle First sentence should end with a period. 219
 Error regexp RegexpSingleline Line has trailing spaces. 221
 Error javadoc JavadocMethod Expected an @return tag. 223
 Error javadoc JavadocStyle First sentence should end with a period. 227
 Error regexp RegexpSingleline Line has trailing spaces. 229
 Error javadoc JavadocMethod Expected an @return tag. 231
 Error javadoc JavadocStyle First sentence should end with a period. 235
 Error regexp RegexpSingleline Line has trailing spaces. 237
 Error javadoc JavadocMethod Expected an @return tag. 239
 Error javadoc JavadocStyle First sentence should end with a period. 243
 Error regexp RegexpSingleline Line has trailing spaces. 245
 Error javadoc JavadocMethod Expected an @return tag. 247
 Error javadoc JavadocStyle First sentence should end with a period. 251
 Error regexp RegexpSingleline Line has trailing spaces. 253
 Error javadoc JavadocMethod Expected an @return tag. 255
 Error javadoc JavadocStyle First sentence should end with a period. 259
 Error regexp RegexpSingleline Line has trailing spaces. 261
 Error javadoc JavadocMethod Expected an @return tag. 263
 Error javadoc JavadocStyle First sentence should end with a period. 267
 Error regexp RegexpSingleline Line has trailing spaces. 269
 Error javadoc JavadocMethod Expected an @return tag. 271
 Error javadoc JavadocStyle First sentence should end with a period. 275
 Error regexp RegexpSingleline Line has trailing spaces. 277
 Error javadoc JavadocMethod Expected an @return tag. 279
 Error javadoc JavadocStyle First sentence should end with a period. 283
 Error regexp RegexpSingleline Line has trailing spaces. 285
 Error javadoc JavadocMethod Expected an @return tag. 287
 Error javadoc JavadocStyle First sentence should end with a period. 291
 Error regexp RegexpSingleline Line has trailing spaces. 293
 Error javadoc JavadocMethod Expected an @return tag. 295
 Error javadoc JavadocStyle First sentence should end with a period. 299
 Error regexp RegexpSingleline Line has trailing spaces. 301
 Error javadoc JavadocMethod Expected an @return tag. 303
 Error javadoc JavadocStyle First sentence should end with a period. 307
 Error regexp RegexpSingleline Line has trailing spaces. 309
 Error javadoc JavadocMethod Expected an @return tag. 311
 Error javadoc JavadocStyle First sentence should end with a period. 315
 Error regexp RegexpSingleline Line has trailing spaces. 317
 Error javadoc JavadocMethod Expected an @return tag. 319
 Error javadoc JavadocStyle First sentence should end with a period. 323
 Error regexp RegexpSingleline Line has trailing spaces. 325
 Error javadoc JavadocMethod Expected an @return tag. 327
 Error javadoc JavadocStyle First sentence should end with a period. 331
 Error regexp RegexpSingleline Line has trailing spaces. 333
 Error javadoc JavadocMethod Expected an @return tag. 335
 Error javadoc JavadocStyle First sentence should end with a period. 339
 Error sizes LineLength Line is longer than 80 characters (found 93). 340
 Error regexp RegexpSingleline Line has trailing spaces. 341
 Error javadoc JavadocMethod Expected an @return tag. 343
 Error sizes LineLength Line is longer than 80 characters (found 81). 344
 Error misc FinalParameters Parameter value should be final. 344
 Error javadoc JavadocMethod Expected @param tag for 'value'. 344
 Error sizes LineLength Line is longer than 80 characters (found 103). 345

com/moreover/api/Print.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 93). 28
 Error sizes LineLength Line is longer than 80 characters (found 101). 29
 Error sizes LineLength Line is longer than 80 characters (found 98). 30
 Error sizes LineLength Line is longer than 80 characters (found 90). 31
 Error sizes LineLength Line is longer than 80 characters (found 93). 32
 Error sizes LineLength Line is longer than 80 characters (found 89). 33
 Error sizes LineLength Line is longer than 80 characters (found 97). 34
 Error sizes LineLength Line is longer than 80 characters (found 93). 35
 Error sizes LineLength Line is longer than 80 characters (found 92). 36
 Error sizes LineLength Line is longer than 80 characters (found 88). 37
 Error sizes LineLength Line is longer than 80 characters (found 89). 38
 Error sizes LineLength Line is longer than 80 characters (found 89). 39
 Error sizes LineLength Line is longer than 80 characters (found 88). 40
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 67
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'supplement' must be private and have accessor methods. 71
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error design VisibilityModifier Variable 'publicationEdition' must be private and have accessor methods. 73
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error design VisibilityModifier Variable 'regionalEdition' must be private and have accessor methods. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error design VisibilityModifier Variable 'section' must be private and have accessor methods. 77
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error design VisibilityModifier Variable 'pageNumber' must be private and have accessor methods. 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 80
 Error design VisibilityModifier Variable 'sizeCm' must be private and have accessor methods. 81
 Error javadoc JavadocVariable Missing a Javadoc comment. 82
 Error design VisibilityModifier Variable 'sizePercentage' must be private and have accessor methods. 83
 Error javadoc JavadocVariable Missing a Javadoc comment. 84
 Error design VisibilityModifier Variable 'originLeft' must be private and have accessor methods. 85
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error design VisibilityModifier Variable 'originTop' must be private and have accessor methods. 87
 Error javadoc JavadocVariable Missing a Javadoc comment. 88
 Error design VisibilityModifier Variable 'width' must be private and have accessor methods. 89
 Error javadoc JavadocVariable Missing a Javadoc comment. 90
 Error design VisibilityModifier Variable 'height' must be private and have accessor methods. 91
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error design VisibilityModifier Variable 'byLine' must be private and have accessor methods. 93
 Error javadoc JavadocVariable Missing a Javadoc comment. 94
 Error design VisibilityModifier Variable 'photo' must be private and have accessor methods. 95
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error misc FinalParameters Parameter value should be final. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error misc FinalParameters Parameter value should be final. 141
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error misc FinalParameters Parameter value should be final. 165
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error misc FinalParameters Parameter value should be final. 189
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error misc FinalParameters Parameter value should be final. 213
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 231
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter value should be final. 237
 Error regexp RegexpSingleline Line has trailing spaces. 243
 Error regexp RegexpSingleline Line has trailing spaces. 247
 Error regexp RegexpSingleline Line has trailing spaces. 255
 Error regexp RegexpSingleline Line has trailing spaces. 259
 Error misc FinalParameters Parameter value should be final. 261
 Error regexp RegexpSingleline Line has trailing spaces. 267
 Error regexp RegexpSingleline Line has trailing spaces. 271
 Error regexp RegexpSingleline Line has trailing spaces. 279
 Error regexp RegexpSingleline Line has trailing spaces. 283
 Error misc FinalParameters Parameter value should be final. 285
 Error regexp RegexpSingleline Line has trailing spaces. 291
 Error regexp RegexpSingleline Line has trailing spaces. 295
 Error regexp RegexpSingleline Line has trailing spaces. 303
 Error regexp RegexpSingleline Line has trailing spaces. 307
 Error misc FinalParameters Parameter value should be final. 309
 Error regexp RegexpSingleline Line has trailing spaces. 315
 Error regexp RegexpSingleline Line has trailing spaces. 319
 Error regexp RegexpSingleline Line has trailing spaces. 327
 Error regexp RegexpSingleline Line has trailing spaces. 331
 Error misc FinalParameters Parameter value should be final. 333
 Error regexp RegexpSingleline Line has trailing spaces. 339
 Error regexp RegexpSingleline Line has trailing spaces. 343
 Error regexp RegexpSingleline Line has trailing spaces. 351
 Error regexp RegexpSingleline Line has trailing spaces. 355
 Error misc FinalParameters Parameter value should be final. 357
 Error regexp RegexpSingleline Line has trailing spaces. 363
 Error regexp RegexpSingleline Line has trailing spaces. 367
 Error regexp RegexpSingleline Line has trailing spaces. 375
 Error regexp RegexpSingleline Line has trailing spaces. 379
 Error misc FinalParameters Parameter value should be final. 381
 Error regexp RegexpSingleline Line has trailing spaces. 387
 Error regexp RegexpSingleline Line has trailing spaces. 391
 Error regexp RegexpSingleline Line has trailing spaces. 399
 Error regexp RegexpSingleline Line has trailing spaces. 403
 Error misc FinalParameters Parameter value should be final. 405

com/moreover/api/Property.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error sizes LineLength Line is longer than 80 characters (found 95). 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 101). 27
 Error sizes LineLength Line is longer than 80 characters (found 102). 28
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 44
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error design VisibilityModifier Variable 'value' must be private and have accessor methods. 48
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter value should be final. 70
 Error coding HiddenField 'value' hides a field. 70
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error regexp RegexpSingleline Line has trailing spaces. 80
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error misc FinalParameters Parameter value should be final. 94
 Error coding HiddenField 'value' hides a field. 94

com/moreover/api/Rank.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 91). 28
 Error sizes LineLength Line is longer than 80 characters (found 96). 29
 Error sizes LineLength Line is longer than 80 characters (found 99). 30
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 47
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error design VisibilityModifier Variable 'autoRank' must be private and have accessor methods. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error design VisibilityModifier Variable 'autoRankOrder' must be private and have accessor methods. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error design VisibilityModifier Variable 'inboundLinkCount' must be private and have accessor methods. 55
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error misc FinalParameters Parameter value should be final. 77
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error misc FinalParameters Parameter value should be final. 101
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error misc FinalParameters Parameter value should be final. 125

com/moreover/api/Semantics.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 95). 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error sizes LineLength Line is longer than 80 characters (found 85). 32
 Error sizes LineLength Line is longer than 80 characters (found 109). 34
 Error sizes LineLength Line is longer than 80 characters (found 85). 43
 Error sizes LineLength Line is longer than 80 characters (found 110). 45
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 66
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error design VisibilityModifier Variable 'events' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'entities' must be private and have accessor methods. 70
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error misc FinalParameters Parameter value should be final. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 102
 Error regexp RegexpSingleline Line has trailing spaces. 110
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error misc FinalParameters Parameter value should be final. 116
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error sizes LineLength Line is longer than 80 characters (found 99). 124
 Error regexp RegexpSingleline Line has trailing spaces. 125
 Error sizes LineLength Line is longer than 80 characters (found 104). 131
 Error regexp RegexpSingleline Line has trailing spaces. 137
 Error regexp RegexpSingleline Line has trailing spaces. 138
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 146
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 148
 Error javadoc JavadocVariable Missing a Javadoc comment. 149
 Error design VisibilityModifier Variable 'entity' must be private and have accessor methods. 149
 Error regexp RegexpSingleline Line has trailing spaces. 153
 Error sizes LineLength Line is longer than 80 characters (found 86). 158
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error regexp RegexpSingleline Line has trailing spaces. 165
 Error regexp RegexpSingleline Line has trailing spaces. 166
 Error regexp RegexpSingleline Line has trailing spaces. 170
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error javadoc JavadocMethod Expected an @return tag. 173
 Error regexp RegexpSingleline Line has trailing spaces. 185
 Error sizes LineLength Line is longer than 80 characters (found 99). 186
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error sizes LineLength Line is longer than 80 characters (found 103). 193
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 200
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 208
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 210
 Error javadoc JavadocVariable Missing a Javadoc comment. 211
 Error design VisibilityModifier Variable 'event' must be private and have accessor methods. 211
 Error regexp RegexpSingleline Line has trailing spaces. 215
 Error sizes LineLength Line is longer than 80 characters (found 85). 220
 Error regexp RegexpSingleline Line has trailing spaces. 221
 Error regexp RegexpSingleline Line has trailing spaces. 227
 Error regexp RegexpSingleline Line has trailing spaces. 228
 Error regexp RegexpSingleline Line has trailing spaces. 232
 Error regexp RegexpSingleline Line has trailing spaces. 233
 Error javadoc JavadocMethod Expected an @return tag. 235

com/moreover/api/SemanticsItem.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 95). 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error sizes LineLength Line is longer than 80 characters (found 85). 32
 Error sizes LineLength Line is longer than 80 characters (found 107). 34
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 54
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error design VisibilityModifier Variable 'properties' must be private and have accessor methods. 57
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error regexp RegexpSingleline Line has trailing spaces. 65
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error misc FinalParameters Parameter value should be final. 79
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error sizes LineLength Line is longer than 80 characters (found 99). 87
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error sizes LineLength Line is longer than 80 characters (found 101). 94
 Error regexp RegexpSingleline Line has trailing spaces. 100
 Error regexp RegexpSingleline Line has trailing spaces. 101
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 109
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 111
 Error javadoc JavadocVariable Missing a Javadoc comment. 112
 Error design VisibilityModifier Variable 'property' must be private and have accessor methods. 112
 Error regexp RegexpSingleline Line has trailing spaces. 116
 Error sizes LineLength Line is longer than 80 characters (found 88). 121
 Error regexp RegexpSingleline Line has trailing spaces. 122
 Error regexp RegexpSingleline Line has trailing spaces. 128
 Error regexp RegexpSingleline Line has trailing spaces. 129
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error regexp RegexpSingleline Line has trailing spaces. 134
 Error javadoc JavadocMethod Expected an @return tag. 136

com/moreover/api/Source.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 99). 28
 Error sizes LineLength Line is longer than 80 characters (found 87). 29
 Error sizes LineLength Line is longer than 80 characters (found 90). 30
 Error sizes LineLength Line is longer than 80 characters (found 92). 31
 Error sizes LineLength Line is longer than 80 characters (found 98). 32
 Error sizes LineLength Line is longer than 80 characters (found 99). 33
 Error sizes LineLength Line is longer than 80 characters (found 91). 34
 Error sizes LineLength Line is longer than 80 characters (found 96). 35
 Error sizes LineLength Line is longer than 80 characters (found 110). 36
 Error sizes LineLength Line is longer than 80 characters (found 108). 37
 Error sizes LineLength Line is longer than 80 characters (found 107). 39
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 67
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'id' must be private and have accessor methods. 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 73
 Error design VisibilityModifier Variable 'homeUrl' must be private and have accessor methods. 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error design VisibilityModifier Variable 'publisher' must be private and have accessor methods. 76
 Error javadoc JavadocVariable Missing a Javadoc comment. 77
 Error design VisibilityModifier Variable 'primaryLanguage' must be private and have accessor methods. 78
 Error javadoc JavadocVariable Missing a Javadoc comment. 79
 Error design VisibilityModifier Variable 'primaryMediaType' must be private and have accessor methods. 80
 Error javadoc JavadocVariable Missing a Javadoc comment. 81
 Error design VisibilityModifier Variable 'category' must be private and have accessor methods. 82
 Error javadoc JavadocVariable Missing a Javadoc comment. 83
 Error design VisibilityModifier Variable 'editorialRank' must be private and have accessor methods. 84
 Error javadoc JavadocVariable Missing a Javadoc comment. 85
 Error design VisibilityModifier Variable 'publicationId' must be private and have accessor methods. 85
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error design VisibilityModifier Variable 'channelCode' must be private and have accessor methods. 86
 Error javadoc JavadocVariable Missing a Javadoc comment. 87
 Error design VisibilityModifier Variable 'location' must be private and have accessor methods. 88
 Error javadoc JavadocVariable Missing a Javadoc comment. 89
 Error design VisibilityModifier Variable 'feedSource' must be private and have accessor methods. 89
 Error javadoc JavadocVariable Missing a Javadoc comment. 90
 Error design VisibilityModifier Variable 'feed' must be private and have accessor methods. 91
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error misc FinalParameters Parameter value should be final. 113
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 131
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error misc FinalParameters Parameter value should be final. 137
 Error regexp RegexpSingleline Line has trailing spaces. 143
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 155
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error misc FinalParameters Parameter value should be final. 161
 Error regexp RegexpSingleline Line has trailing spaces. 167
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 179
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter value should be final. 185
 Error regexp RegexpSingleline Line has trailing spaces. 191
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 203
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error misc FinalParameters Parameter value should be final. 209
 Error regexp RegexpSingleline Line has trailing spaces. 215
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error regexp RegexpSingleline Line has trailing spaces. 227
 Error regexp RegexpSingleline Line has trailing spaces. 231
 Error misc FinalParameters Parameter value should be final. 233
 Error regexp RegexpSingleline Line has trailing spaces. 239
 Error regexp RegexpSingleline Line has trailing spaces. 243
 Error regexp RegexpSingleline Line has trailing spaces. 251
 Error regexp RegexpSingleline Line has trailing spaces. 255
 Error misc FinalParameters Parameter value should be final. 257
 Error regexp RegexpSingleline Line has trailing spaces. 263
 Error regexp RegexpSingleline Line has trailing spaces. 267
 Error regexp RegexpSingleline Line has trailing spaces. 275
 Error regexp RegexpSingleline Line has trailing spaces. 279
 Error misc FinalParameters Parameter value should be final. 281
 Error regexp RegexpSingleline Line has trailing spaces. 287
 Error regexp RegexpSingleline Line has trailing spaces. 291
 Error regexp RegexpSingleline Line has trailing spaces. 299
 Error regexp RegexpSingleline Line has trailing spaces. 303
 Error misc FinalParameters Parameter value should be final. 305
 Error regexp RegexpSingleline Line has trailing spaces. 311
 Error regexp RegexpSingleline Line has trailing spaces. 315
 Error regexp RegexpSingleline Line has trailing spaces. 323
 Error regexp RegexpSingleline Line has trailing spaces. 327
 Error misc FinalParameters Parameter value should be final. 329
 Error regexp RegexpSingleline Line has trailing spaces. 335
 Error regexp RegexpSingleline Line has trailing spaces. 339
 Error regexp RegexpSingleline Line has trailing spaces. 347
 Error regexp RegexpSingleline Line has trailing spaces. 351
 Error misc FinalParameters Parameter value should be final. 353
 Error regexp RegexpSingleline Line has trailing spaces. 359
 Error regexp RegexpSingleline Line has trailing spaces. 363
 Error regexp RegexpSingleline Line has trailing spaces. 371
 Error regexp RegexpSingleline Line has trailing spaces. 375
 Error misc FinalParameters Parameter value should be final. 377
 Error regexp RegexpSingleline Line has trailing spaces. 383
 Error regexp RegexpSingleline Line has trailing spaces. 387
 Error regexp RegexpSingleline Line has trailing spaces. 395
 Error regexp RegexpSingleline Line has trailing spaces. 399
 Error misc FinalParameters Parameter value should be final. 401

com/moreover/api/SourceLocation.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 20
 Error sizes LineLength Line is longer than 80 characters (found 95). 21
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error sizes LineLength Line is longer than 80 characters (found 90). 28
 Error sizes LineLength Line is longer than 80 characters (found 94). 29
 Error sizes LineLength Line is longer than 80 characters (found 89). 30
 Error sizes LineLength Line is longer than 80 characters (found 92). 31
 Error sizes LineLength Line is longer than 80 characters (found 88). 32
 Error sizes LineLength Line is longer than 80 characters (found 90). 33
 Error sizes LineLength Line is longer than 80 characters (found 90). 34
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 55
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error design VisibilityModifier Variable 'country' must be private and have accessor methods. 59
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error design VisibilityModifier Variable 'countryCode' must be private and have accessor methods. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error design VisibilityModifier Variable 'region' must be private and have accessor methods. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'subregion' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error design VisibilityModifier Variable 'state' must be private and have accessor methods. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error design VisibilityModifier Variable 'zipArea' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error design VisibilityModifier Variable 'zipCode' must be private and have accessor methods. 71
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error misc FinalParameters Parameter value should be final. 93
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 111
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error misc FinalParameters Parameter value should be final. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 127
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error regexp RegexpSingleline Line has trailing spaces. 139
 Error misc FinalParameters Parameter value should be final. 141
 Error regexp RegexpSingleline Line has trailing spaces. 147
 Error regexp RegexpSingleline Line has trailing spaces. 151
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error misc FinalParameters Parameter value should be final. 165
 Error regexp RegexpSingleline Line has trailing spaces. 171
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error regexp RegexpSingleline Line has trailing spaces. 187
 Error misc FinalParameters Parameter value should be final. 189
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error misc FinalParameters Parameter value should be final. 213
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 231
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter value should be final. 237

com/moreover/api/State.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error sizes LineLength Line is longer than 80 characters (found 95). 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 107). 27
 Error sizes LineLength Line is longer than 80 characters (found 105). 28
 Error sizes LineLength Line is longer than 80 characters (found 101). 29
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 46
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error design VisibilityModifier Variable 'confidence' must be private and have accessor methods. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error design VisibilityModifier Variable 'fipsCode' must be private and have accessor methods. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 51
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error misc FinalParameters Parameter value should be final. 73
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error misc FinalParameters Parameter value should be final. 97
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error misc FinalParameters Parameter value should be final. 121

com/moreover/api/Topic.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error sizes LineLength Line is longer than 80 characters (found 110). 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4
 Error sizes LineLength Line is longer than 80 characters (found 88). 4
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error sizes LineLength Line is longer than 80 characters (found 95). 20
 Error regexp RegexpSingleline Line has trailing spaces. 21
 Error sizes LineLength Line is longer than 80 characters (found 101). 27
 Error sizes LineLength Line is longer than 80 characters (found 102). 28
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error regexp RegexpSingleline Line has trailing spaces. 35
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 44
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error design VisibilityModifier Variable 'group' must be private and have accessor methods. 48
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter value should be final. 70
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error regexp RegexpSingleline Line has trailing spaces. 80
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error misc FinalParameters Parameter value should be final. 94

org/apache/streams/moreover/Audio.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter url should be final. 48
 Error coding HiddenField 'url' hides a field. 48
 Error design DesignForExtension Class 'Audio' looks like designed for extension (can be subclassed), but the method 'withUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Audio' final or making the method 'withUrl' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter url should be final. 52
 Error coding HiddenField 'url' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter mimeType should be final. 73
 Error coding HiddenField 'mimeType' hides a field. 73
 Error design DesignForExtension Class 'Audio' looks like designed for extension (can be subclassed), but the method 'withMimeType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Audio' final or making the method 'withMimeType' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter mimeType should be final. 77
 Error coding HiddenField 'mimeType' hides a field. 77
 Error design DesignForExtension Class 'Audio' 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 'Audio' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Audio' 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 'Audio' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Audio' 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 'Audio' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Audio' 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 'Audio' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Audio' 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 'Audio' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 108). 104
 Error design DesignForExtension Class 'Audio' 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 'Audio' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 153). 116

org/apache/streams/moreover/Author.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error sizes LineLength Line is longer than 80 characters (found 85). 36
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error misc FinalParameters Parameter publishingPlatform should be final. 54
 Error coding HiddenField 'publishingPlatform' hides a field. 54
 Error sizes LineLength Line is longer than 80 characters (found 82). 58
 Error design DesignForExtension Class 'Author' looks like designed for extension (can be subclassed), but the method 'withPublishingPlatform' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Author' final or making the method 'withPublishingPlatform' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 58
 Error misc FinalParameters Parameter publishingPlatform should be final. 58
 Error coding HiddenField 'publishingPlatform' hides a field. 58
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error misc FinalParameters Parameter dateLastActive should be final. 79
 Error coding HiddenField 'dateLastActive' hides a field. 79
 Error design DesignForExtension Class 'Author' looks like designed for extension (can be subclassed), but the method 'withDateLastActive' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Author' final or making the method 'withDateLastActive' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error misc FinalParameters Parameter dateLastActive should be final. 83
 Error coding HiddenField 'dateLastActive' hides a field. 83
 Error regexp RegexpSingleline Line has trailing spaces. 89
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error misc FinalParameters Parameter description should be final. 104
 Error coding HiddenField 'description' hides a field. 104
 Error design DesignForExtension Class 'Author' looks like designed for extension (can be subclassed), but the method 'withDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Author' final or making the method 'withDescription' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error javadoc JavadocMethod Missing a Javadoc comment. 108
 Error misc FinalParameters Parameter description should be final. 108
 Error coding HiddenField 'description' hides a field. 108
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error regexp RegexpSingleline Line has trailing spaces. 124
 Error misc FinalParameters Parameter name should be final. 129
 Error coding HiddenField 'name' hides a field. 129
 Error design DesignForExtension Class 'Author' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Author' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error misc FinalParameters Parameter name should be final. 133
 Error coding HiddenField 'name' hides a field. 133
 Error design DesignForExtension Class 'Author' 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 'Author' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error design DesignForExtension Class 'Author' 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 'Author' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 143
 Error javadoc JavadocMethod Missing a Javadoc comment. 143
 Error design DesignForExtension Class 'Author' 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 'Author' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 148
 Error javadoc JavadocMethod Missing a Javadoc comment. 148
 Error misc FinalParameters Parameter name should be final. 149
 Error coding HiddenField 'name' hides a field. 149
 Error misc FinalParameters Parameter value should be final. 149
 Error design DesignForExtension Class 'Author' 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 'Author' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 153
 Error javadoc JavadocMethod Missing a Javadoc comment. 153
 Error misc FinalParameters Parameter name should be final. 153
 Error coding HiddenField 'name' hides a field. 153
 Error misc FinalParameters Parameter value should be final. 153
 Error design DesignForExtension Class 'Author' 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 'Author' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 158
 Error sizes LineLength Line is longer than 80 characters (found 162). 160
 Error design DesignForExtension Class 'Author' 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 'Author' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 163
 Error misc FinalParameters Parameter other should be final. 164
 Error coding SimplifyBooleanExpression Expression can be simplified. 168
 Error sizes LineLength Line is longer than 80 characters (found 255). 172

org/apache/streams/moreover/Companies.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 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 85). 45
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error misc FinalParameters Parameter symbol should be final. 63
 Error coding HiddenField 'symbol' hides a field. 63
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withSymbol' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withSymbol' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error misc FinalParameters Parameter symbol should be final. 67
 Error coding HiddenField 'symbol' hides a field. 67
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error misc FinalParameters Parameter primary should be final. 88
 Error coding HiddenField 'primary' hides a field. 88
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withPrimary' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withPrimary' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter primary should be final. 92
 Error coding HiddenField 'primary' hides a field. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error misc FinalParameters Parameter name should be final. 113
 Error coding HiddenField 'name' hides a field. 113
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter name should be final. 117
 Error coding HiddenField 'name' hides a field. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error misc FinalParameters Parameter contentCount should be final. 138
 Error coding HiddenField 'contentCount' hides a field. 138
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withContentCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withContentCount' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Error javadoc JavadocMethod Missing a Javadoc comment. 142
 Error misc FinalParameters Parameter contentCount should be final. 142
 Error coding HiddenField 'contentCount' hides a field. 142
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error regexp RegexpSingleline Line has trailing spaces. 158
 Error misc FinalParameters Parameter exchange should be final. 163
 Error coding HiddenField 'exchange' hides a field. 163
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withExchange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withExchange' static/final/abstract/empty, or adding allowed annotation for the method. 167
 Error javadoc JavadocMethod Missing a Javadoc comment. 167
 Error misc FinalParameters Parameter exchange should be final. 167
 Error coding HiddenField 'exchange' hides a field. 167
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter titleCount should be final. 188
 Error coding HiddenField 'titleCount' hides a field. 188
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withTitleCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withTitleCount' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter titleCount should be final. 192
 Error coding HiddenField 'titleCount' hides a field. 192
 Error regexp RegexpSingleline Line has trailing spaces. 198
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error misc FinalParameters Parameter isin should be final. 213
 Error coding HiddenField 'isin' hides a field. 213
 Error design DesignForExtension Class 'Companies' looks like designed for extension (can be subclassed), but the method 'withIsin' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Companies' final or making the method 'withIsin' static/final/abstract/empty, or adding allowed annotation for the method. 217
 Error javadoc JavadocMethod Missing a Javadoc comment. 217
 Error misc FinalParameters Parameter isin should be final. 217
 Error coding HiddenField 'isin' hides a field. 217
 Error design DesignForExtension Class 'Companies' 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 'Companies' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 222
 Error design DesignForExtension Class 'Companies' 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 'Companies' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 227
 Error javadoc JavadocMethod Missing a Javadoc comment. 227
 Error design DesignForExtension Class 'Companies' 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 'Companies' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 232
 Error javadoc JavadocMethod Missing a Javadoc comment. 232
 Error misc FinalParameters Parameter name should be final. 233
 Error coding HiddenField 'name' hides a field. 233
 Error misc FinalParameters Parameter value should be final. 233
 Error design DesignForExtension Class 'Companies' 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 'Companies' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 237
 Error javadoc JavadocMethod Missing a Javadoc comment. 237
 Error misc FinalParameters Parameter name should be final. 237
 Error coding HiddenField 'name' hides a field. 237
 Error misc FinalParameters Parameter value should be final. 237
 Error design DesignForExtension Class 'Companies' 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 'Companies' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 242
 Error sizes LineLength Line is longer than 80 characters (found 193). 244
 Error design DesignForExtension Class 'Companies' 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 'Companies' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 247
 Error misc FinalParameters Parameter other should be final. 248
 Error coding SimplifyBooleanExpression Expression can be simplified. 252
 Error sizes LineLength Line is longer than 80 characters (found 308). 256

org/apache/streams/moreover/Country.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error sizes LineLength Line is longer than 80 characters (found 85). 36
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error misc FinalParameters Parameter name should be final. 54
 Error coding HiddenField 'name' hides a field. 54
 Error design DesignForExtension Class 'Country' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Country' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 58
 Error misc FinalParameters Parameter name should be final. 58
 Error coding HiddenField 'name' hides a field. 58
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error misc FinalParameters Parameter fipsCode should be final. 79
 Error coding HiddenField 'fipsCode' hides a field. 79
 Error design DesignForExtension Class 'Country' looks like designed for extension (can be subclassed), but the method 'withFipsCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Country' final or making the method 'withFipsCode' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error misc FinalParameters Parameter fipsCode should be final. 83
 Error coding HiddenField 'fipsCode' hides a field. 83
 Error regexp RegexpSingleline Line has trailing spaces. 89
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error misc FinalParameters Parameter isoCode should be final. 104
 Error coding HiddenField 'isoCode' hides a field. 104
 Error design DesignForExtension Class 'Country' looks like designed for extension (can be subclassed), but the method 'withIsoCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Country' final or making the method 'withIsoCode' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error javadoc JavadocMethod Missing a Javadoc comment. 108
 Error misc FinalParameters Parameter isoCode should be final. 108
 Error coding HiddenField 'isoCode' hides a field. 108
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error regexp RegexpSingleline Line has trailing spaces. 124
 Error misc FinalParameters Parameter confidence should be final. 129
 Error coding HiddenField 'confidence' hides a field. 129
 Error design DesignForExtension Class 'Country' looks like designed for extension (can be subclassed), but the method 'withConfidence' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Country' final or making the method 'withConfidence' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error misc FinalParameters Parameter confidence should be final. 133
 Error coding HiddenField 'confidence' hides a field. 133
 Error design DesignForExtension Class 'Country' 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 'Country' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error design DesignForExtension Class 'Country' 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 'Country' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 143
 Error javadoc JavadocMethod Missing a Javadoc comment. 143
 Error design DesignForExtension Class 'Country' 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 'Country' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 148
 Error javadoc JavadocMethod Missing a Javadoc comment. 148
 Error misc FinalParameters Parameter name should be final. 149
 Error coding HiddenField 'name' hides a field. 149
 Error misc FinalParameters Parameter value should be final. 149
 Error design DesignForExtension Class 'Country' 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 'Country' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 153
 Error javadoc JavadocMethod Missing a Javadoc comment. 153
 Error misc FinalParameters Parameter name should be final. 153
 Error coding HiddenField 'name' hides a field. 153
 Error misc FinalParameters Parameter value should be final. 153
 Error design DesignForExtension Class 'Country' 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 'Country' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 158
 Error sizes LineLength Line is longer than 80 characters (found 144). 160
 Error design DesignForExtension Class 'Country' 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 'Country' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 163
 Error misc FinalParameters Parameter other should be final. 164
 Error coding SimplifyBooleanExpression Expression can be simplified. 168
 Error sizes LineLength Line is longer than 80 characters (found 219). 172

org/apache/streams/moreover/Feed.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 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 javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error sizes LineLength Line is longer than 80 characters (found 85). 75
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error misc FinalParameters Parameter tags should be final. 93
 Error coding HiddenField 'tags' hides a field. 93
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withTags' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter tags should be final. 97
 Error coding HiddenField 'tags' hides a field. 97
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 113
 Error misc FinalParameters Parameter genre should be final. 118
 Error coding HiddenField 'genre' hides a field. 118
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withGenre' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withGenre' static/final/abstract/empty, or adding allowed annotation for the method. 122
 Error javadoc JavadocMethod Missing a Javadoc comment. 122
 Error misc FinalParameters Parameter genre should be final. 122
 Error coding HiddenField 'genre' hides a field. 122
 Error regexp RegexpSingleline Line has trailing spaces. 128
 Error regexp RegexpSingleline Line has trailing spaces. 138
 Error misc FinalParameters Parameter publishingPlatform should be final. 143
 Error coding HiddenField 'publishingPlatform' hides a field. 143
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withPublishingPlatform' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withPublishingPlatform' static/final/abstract/empty, or adding allowed annotation for the method. 147
 Error javadoc JavadocMethod Missing a Javadoc comment. 147
 Error misc FinalParameters Parameter publishingPlatform should be final. 147
 Error coding HiddenField 'publishingPlatform' hides a field. 147
 Error regexp RegexpSingleline Line has trailing spaces. 153
 Error regexp RegexpSingleline Line has trailing spaces. 163
 Error misc FinalParameters Parameter inWhiteList should be final. 168
 Error coding HiddenField 'inWhiteList' hides a field. 168
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withInWhiteList' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withInWhiteList' static/final/abstract/empty, or adding allowed annotation for the method. 172
 Error javadoc JavadocMethod Missing a Javadoc comment. 172
 Error misc FinalParameters Parameter inWhiteList should be final. 172
 Error coding HiddenField 'inWhiteList' hides a field. 172
 Error regexp RegexpSingleline Line has trailing spaces. 178
 Error regexp RegexpSingleline Line has trailing spaces. 188
 Error misc FinalParameters Parameter imageUrl should be final. 193
 Error coding HiddenField 'imageUrl' hides a field. 193
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withImageUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withImageUrl' static/final/abstract/empty, or adding allowed annotation for the method. 197
 Error javadoc JavadocMethod Missing a Javadoc comment. 197
 Error misc FinalParameters Parameter imageUrl should be final. 197
 Error coding HiddenField 'imageUrl' hides a field. 197
 Error regexp RegexpSingleline Line has trailing spaces. 203
 Error regexp RegexpSingleline Line has trailing spaces. 213
 Error misc FinalParameters Parameter copyright should be final. 218
 Error coding HiddenField 'copyright' hides a field. 218
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withCopyright' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withCopyright' static/final/abstract/empty, or adding allowed annotation for the method. 222
 Error javadoc JavadocMethod Missing a Javadoc comment. 222
 Error misc FinalParameters Parameter copyright should be final. 222
 Error coding HiddenField 'copyright' hides a field. 222
 Error regexp RegexpSingleline Line has trailing spaces. 228
 Error regexp RegexpSingleline Line has trailing spaces. 238
 Error misc FinalParameters Parameter mediaType should be final. 243
 Error coding HiddenField 'mediaType' hides a field. 243
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withMediaType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withMediaType' static/final/abstract/empty, or adding allowed annotation for the method. 247
 Error javadoc JavadocMethod Missing a Javadoc comment. 247
 Error misc FinalParameters Parameter mediaType should be final. 247
 Error coding HiddenField 'mediaType' hides a field. 247
 Error regexp RegexpSingleline Line has trailing spaces. 253
 Error regexp RegexpSingleline Line has trailing spaces. 263
 Error misc FinalParameters Parameter id should be final. 268
 Error coding HiddenField 'id' hides a field. 268
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 272
 Error javadoc JavadocMethod Missing a Javadoc comment. 272
 Error misc FinalParameters Parameter id should be final. 272
 Error coding HiddenField 'id' hides a field. 272
 Error regexp RegexpSingleline Line has trailing spaces. 278
 Error regexp RegexpSingleline Line has trailing spaces. 288
 Error misc FinalParameters Parameter rank should be final. 293
 Error coding HiddenField 'rank' hides a field. 293
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withRank' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withRank' static/final/abstract/empty, or adding allowed annotation for the method. 297
 Error javadoc JavadocMethod Missing a Javadoc comment. 297
 Error misc FinalParameters Parameter rank should be final. 297
 Error coding HiddenField 'rank' hides a field. 297
 Error regexp RegexpSingleline Line has trailing spaces. 303
 Error regexp RegexpSingleline Line has trailing spaces. 313
 Error misc FinalParameters Parameter description should be final. 318
 Error coding HiddenField 'description' hides a field. 318
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withDescription' static/final/abstract/empty, or adding allowed annotation for the method. 322
 Error javadoc JavadocMethod Missing a Javadoc comment. 322
 Error misc FinalParameters Parameter description should be final. 322
 Error coding HiddenField 'description' hides a field. 322
 Error regexp RegexpSingleline Line has trailing spaces. 328
 Error regexp RegexpSingleline Line has trailing spaces. 338
 Error misc FinalParameters Parameter idFromPublisher should be final. 343
 Error coding HiddenField 'idFromPublisher' hides a field. 343
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withIdFromPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withIdFromPublisher' static/final/abstract/empty, or adding allowed annotation for the method. 347
 Error javadoc JavadocMethod Missing a Javadoc comment. 347
 Error misc FinalParameters Parameter idFromPublisher should be final. 347
 Error coding HiddenField 'idFromPublisher' hides a field. 347
 Error regexp RegexpSingleline Line has trailing spaces. 353
 Error regexp RegexpSingleline Line has trailing spaces. 363
 Error misc FinalParameters Parameter name should be final. 368
 Error coding HiddenField 'name' hides a field. 368
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 372
 Error javadoc JavadocMethod Missing a Javadoc comment. 372
 Error misc FinalParameters Parameter name should be final. 372
 Error coding HiddenField 'name' hides a field. 372
 Error regexp RegexpSingleline Line has trailing spaces. 378
 Error regexp RegexpSingleline Line has trailing spaces. 388
 Error misc FinalParameters Parameter dataFormat should be final. 393
 Error coding HiddenField 'dataFormat' hides a field. 393
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withDataFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withDataFormat' static/final/abstract/empty, or adding allowed annotation for the method. 397
 Error javadoc JavadocMethod Missing a Javadoc comment. 397
 Error misc FinalParameters Parameter dataFormat should be final. 397
 Error coding HiddenField 'dataFormat' hides a field. 397
 Error regexp RegexpSingleline Line has trailing spaces. 403
 Error regexp RegexpSingleline Line has trailing spaces. 413
 Error misc FinalParameters Parameter generator should be final. 418
 Error coding HiddenField 'generator' hides a field. 418
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withGenerator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withGenerator' static/final/abstract/empty, or adding allowed annotation for the method. 422
 Error javadoc JavadocMethod Missing a Javadoc comment. 422
 Error misc FinalParameters Parameter generator should be final. 422
 Error coding HiddenField 'generator' hides a field. 422
 Error regexp RegexpSingleline Line has trailing spaces. 428
 Error regexp RegexpSingleline Line has trailing spaces. 438
 Error misc FinalParameters Parameter autoTopics should be final. 443
 Error coding HiddenField 'autoTopics' hides a field. 443
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withAutoTopics' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withAutoTopics' static/final/abstract/empty, or adding allowed annotation for the method. 447
 Error javadoc JavadocMethod Missing a Javadoc comment. 447
 Error misc FinalParameters Parameter autoTopics should be final. 447
 Error coding HiddenField 'autoTopics' hides a field. 447
 Error regexp RegexpSingleline Line has trailing spaces. 453
 Error regexp RegexpSingleline Line has trailing spaces. 463
 Error misc FinalParameters Parameter language should be final. 468
 Error coding HiddenField 'language' hides a field. 468
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withLanguage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withLanguage' static/final/abstract/empty, or adding allowed annotation for the method. 472
 Error javadoc JavadocMethod Missing a Javadoc comment. 472
 Error misc FinalParameters Parameter language should be final. 472
 Error coding HiddenField 'language' hides a field. 472
 Error regexp RegexpSingleline Line has trailing spaces. 478
 Error regexp RegexpSingleline Line has trailing spaces. 488
 Error misc FinalParameters Parameter editorialTopics should be final. 493
 Error coding HiddenField 'editorialTopics' hides a field. 493
 Error design DesignForExtension Class 'Feed' looks like designed for extension (can be subclassed), but the method 'withEditorialTopics' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Feed' final or making the method 'withEditorialTopics' static/final/abstract/empty, or adding allowed annotation for the method. 497
 Error javadoc JavadocMethod Missing a Javadoc comment. 497
 Error misc FinalParameters Parameter editorialTopics should be final. 497
 Error coding HiddenField 'editorialTopics' hides a field. 497
 Error design DesignForExtension Class 'Feed' 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 'Feed' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 502
 Error design DesignForExtension Class 'Feed' 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 'Feed' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 507
 Error javadoc JavadocMethod Missing a Javadoc comment. 507
 Error design DesignForExtension Class 'Feed' 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 'Feed' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 512
 Error javadoc JavadocMethod Missing a Javadoc comment. 512
 Error misc FinalParameters Parameter name should be final. 513
 Error coding HiddenField 'name' hides a field. 513
 Error misc FinalParameters Parameter value should be final. 513
 Error design DesignForExtension Class 'Feed' 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 'Feed' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 517
 Error javadoc JavadocMethod Missing a Javadoc comment. 517
 Error misc FinalParameters Parameter name should be final. 517
 Error coding HiddenField 'name' hides a field. 517
 Error misc FinalParameters Parameter value should be final. 517
 Error design DesignForExtension Class 'Feed' 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 'Feed' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 522
 Error sizes LineLength Line is longer than 80 characters (found 384). 524
 Error design DesignForExtension Class 'Feed' 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 'Feed' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 527
 Error misc FinalParameters Parameter other should be final. 528
 Error coding SimplifyBooleanExpression Expression can be simplified. 532
 Error sizes LineLength Line is longer than 80 characters (found 660). 536

org/apache/streams/moreover/Image.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error sizes LineLength Line is longer than 80 characters (found 85). 27
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error misc FinalParameters Parameter url should be final. 45
 Error coding HiddenField 'url' hides a field. 45
 Error design DesignForExtension Class 'Image' looks like designed for extension (can be subclassed), but the method 'withUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Image' final or making the method 'withUrl' static/final/abstract/empty, or adding allowed annotation for the method. 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error misc FinalParameters Parameter url should be final. 49
 Error coding HiddenField 'url' hides a field. 49
 Error design DesignForExtension Class 'Image' 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 'Image' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error design DesignForExtension Class 'Image' 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 'Image' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error design DesignForExtension Class 'Image' 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 'Image' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error javadoc JavadocMethod Missing a Javadoc comment. 64
 Error misc FinalParameters Parameter name should be final. 65
 Error misc FinalParameters Parameter value should be final. 65
 Error design DesignForExtension Class 'Image' 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 'Image' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error javadoc JavadocMethod Missing a Javadoc comment. 69
 Error misc FinalParameters Parameter name should be final. 69
 Error misc FinalParameters Parameter value should be final. 69
 Error design DesignForExtension Class 'Image' 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 'Image' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error sizes LineLength Line is longer than 80 characters (found 91). 76
 Error design DesignForExtension Class 'Image' 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 'Image' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 79
 Error misc FinalParameters Parameter other should be final. 80
 Error coding SimplifyBooleanExpression Expression can be simplified. 84
 Error sizes LineLength Line is longer than 80 characters (found 122). 88

org/apache/streams/moreover/Location.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 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 85). 45
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error misc FinalParameters Parameter region should be final. 63
 Error coding HiddenField 'region' hides a field. 63
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withRegion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withRegion' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error misc FinalParameters Parameter region should be final. 67
 Error coding HiddenField 'region' hides a field. 67
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error misc FinalParameters Parameter subregion should be final. 88
 Error coding HiddenField 'subregion' hides a field. 88
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withSubregion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withSubregion' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter subregion should be final. 92
 Error coding HiddenField 'subregion' hides a field. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error misc FinalParameters Parameter zipCode should be final. 113
 Error coding HiddenField 'zipCode' hides a field. 113
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withZipCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withZipCode' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter zipCode should be final. 117
 Error coding HiddenField 'zipCode' hides a field. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error misc FinalParameters Parameter state should be final. 138
 Error coding HiddenField 'state' hides a field. 138
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withState' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withState' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Error javadoc JavadocMethod Missing a Javadoc comment. 142
 Error misc FinalParameters Parameter state should be final. 142
 Error coding HiddenField 'state' hides a field. 142
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error regexp RegexpSingleline Line has trailing spaces. 158
 Error misc FinalParameters Parameter countryCode should be final. 163
 Error coding HiddenField 'countryCode' hides a field. 163
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withCountryCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withCountryCode' static/final/abstract/empty, or adding allowed annotation for the method. 167
 Error javadoc JavadocMethod Missing a Javadoc comment. 167
 Error misc FinalParameters Parameter countryCode should be final. 167
 Error coding HiddenField 'countryCode' hides a field. 167
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter zipArea should be final. 188
 Error coding HiddenField 'zipArea' hides a field. 188
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withZipArea' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withZipArea' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter zipArea should be final. 192
 Error coding HiddenField 'zipArea' hides a field. 192
 Error regexp RegexpSingleline Line has trailing spaces. 198
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error misc FinalParameters Parameter country should be final. 213
 Error coding HiddenField 'country' hides a field. 213
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withCountry' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withCountry' static/final/abstract/empty, or adding allowed annotation for the method. 217
 Error javadoc JavadocMethod Missing a Javadoc comment. 217
 Error misc FinalParameters Parameter country should be final. 217
 Error coding HiddenField 'country' hides a field. 217
 Error design DesignForExtension Class 'Location' 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 'Location' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 222
 Error design DesignForExtension Class 'Location' 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 'Location' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 227
 Error javadoc JavadocMethod Missing a Javadoc comment. 227
 Error design DesignForExtension Class 'Location' 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 'Location' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 232
 Error javadoc JavadocMethod Missing a Javadoc comment. 232
 Error misc FinalParameters Parameter name should be final. 233
 Error misc FinalParameters Parameter value should be final. 233
 Error design DesignForExtension Class 'Location' 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 'Location' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 237
 Error javadoc JavadocMethod Missing a Javadoc comment. 237
 Error misc FinalParameters Parameter name should be final. 237
 Error misc FinalParameters Parameter value should be final. 237
 Error design DesignForExtension Class 'Location' 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 'Location' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 242
 Error sizes LineLength Line is longer than 80 characters (found 194). 244
 Error design DesignForExtension Class 'Location' 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 'Location' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 247
 Error misc FinalParameters Parameter other should be final. 248
 Error coding SimplifyBooleanExpression Expression can be simplified. 252
 Error sizes LineLength Line is longer than 80 characters (found 310). 256

org/apache/streams/moreover/Locations.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error sizes LineLength Line is longer than 80 characters (found 85). 54
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error misc FinalParameters Parameter region should be final. 72
 Error coding HiddenField 'region' hides a field. 72
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withRegion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withRegion' static/final/abstract/empty, or adding allowed annotation for the method. 76
 Error javadoc JavadocMethod Missing a Javadoc comment. 76
 Error misc FinalParameters Parameter region should be final. 76
 Error coding HiddenField 'region' hides a field. 76
 Error regexp RegexpSingleline Line has trailing spaces. 82
 Error regexp RegexpSingleline Line has trailing spaces. 92
 Error misc FinalParameters Parameter subregion should be final. 97
 Error coding HiddenField 'subregion' hides a field. 97
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withSubregion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withSubregion' static/final/abstract/empty, or adding allowed annotation for the method. 101
 Error javadoc JavadocMethod Missing a Javadoc comment. 101
 Error misc FinalParameters Parameter subregion should be final. 101
 Error coding HiddenField 'subregion' hides a field. 101
 Error regexp RegexpSingleline Line has trailing spaces. 107
 Error regexp RegexpSingleline Line has trailing spaces. 117
 Error misc FinalParameters Parameter name should be final. 122
 Error coding HiddenField 'name' hides a field. 122
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 126
 Error javadoc JavadocMethod Missing a Javadoc comment. 126
 Error misc FinalParameters Parameter name should be final. 126
 Error coding HiddenField 'name' hides a field. 126
 Error regexp RegexpSingleline Line has trailing spaces. 132
 Error regexp RegexpSingleline Line has trailing spaces. 142
 Error misc FinalParameters Parameter state should be final. 147
 Error coding HiddenField 'state' hides a field. 147
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withState' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withState' static/final/abstract/empty, or adding allowed annotation for the method. 151
 Error javadoc JavadocMethod Missing a Javadoc comment. 151
 Error misc FinalParameters Parameter state should be final. 151
 Error coding HiddenField 'state' hides a field. 151
 Error regexp RegexpSingleline Line has trailing spaces. 157
 Error regexp RegexpSingleline Line has trailing spaces. 167
 Error misc FinalParameters Parameter longitude should be final. 172
 Error coding HiddenField 'longitude' hides a field. 172
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withLongitude' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withLongitude' static/final/abstract/empty, or adding allowed annotation for the method. 176
 Error javadoc JavadocMethod Missing a Javadoc comment. 176
 Error misc FinalParameters Parameter longitude should be final. 176
 Error coding HiddenField 'longitude' hides a field. 176
 Error regexp RegexpSingleline Line has trailing spaces. 182
 Error regexp RegexpSingleline Line has trailing spaces. 192
 Error misc FinalParameters Parameter latitude should be final. 197
 Error coding HiddenField 'latitude' hides a field. 197
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withLatitude' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withLatitude' static/final/abstract/empty, or adding allowed annotation for the method. 201
 Error javadoc JavadocMethod Missing a Javadoc comment. 201
 Error misc FinalParameters Parameter latitude should be final. 201
 Error coding HiddenField 'latitude' hides a field. 201
 Error regexp RegexpSingleline Line has trailing spaces. 207
 Error regexp RegexpSingleline Line has trailing spaces. 217
 Error misc FinalParameters Parameter confidence should be final. 222
 Error coding HiddenField 'confidence' hides a field. 222
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withConfidence' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withConfidence' static/final/abstract/empty, or adding allowed annotation for the method. 226
 Error javadoc JavadocMethod Missing a Javadoc comment. 226
 Error misc FinalParameters Parameter confidence should be final. 226
 Error coding HiddenField 'confidence' hides a field. 226
 Error regexp RegexpSingleline Line has trailing spaces. 232
 Error regexp RegexpSingleline Line has trailing spaces. 242
 Error misc FinalParameters Parameter type should be final. 247
 Error coding HiddenField 'type' hides a field. 247
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withType' static/final/abstract/empty, or adding allowed annotation for the method. 251
 Error javadoc JavadocMethod Missing a Javadoc comment. 251
 Error misc FinalParameters Parameter type should be final. 251
 Error coding HiddenField 'type' hides a field. 251
 Error regexp RegexpSingleline Line has trailing spaces. 257
 Error regexp RegexpSingleline Line has trailing spaces. 267
 Error misc FinalParameters Parameter mentions should be final. 272
 Error coding HiddenField 'mentions' hides a field. 272
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withMentions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withMentions' static/final/abstract/empty, or adding allowed annotation for the method. 276
 Error javadoc JavadocMethod Missing a Javadoc comment. 276
 Error misc FinalParameters Parameter mentions should be final. 276
 Error coding HiddenField 'mentions' hides a field. 276
 Error regexp RegexpSingleline Line has trailing spaces. 282
 Error regexp RegexpSingleline Line has trailing spaces. 292
 Error misc FinalParameters Parameter country should be final. 297
 Error coding HiddenField 'country' hides a field. 297
 Error design DesignForExtension Class 'Locations' looks like designed for extension (can be subclassed), but the method 'withCountry' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Locations' final or making the method 'withCountry' static/final/abstract/empty, or adding allowed annotation for the method. 301
 Error javadoc JavadocMethod Missing a Javadoc comment. 301
 Error misc FinalParameters Parameter country should be final. 301
 Error coding HiddenField 'country' hides a field. 301
 Error design DesignForExtension Class 'Locations' 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 'Locations' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 306
 Error design DesignForExtension Class 'Locations' 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 'Locations' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 311
 Error javadoc JavadocMethod Missing a Javadoc comment. 311
 Error design DesignForExtension Class 'Locations' 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 'Locations' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 316
 Error javadoc JavadocMethod Missing a Javadoc comment. 316
 Error misc FinalParameters Parameter name should be final. 317
 Error coding HiddenField 'name' hides a field. 317
 Error misc FinalParameters Parameter value should be final. 317
 Error design DesignForExtension Class 'Locations' 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 'Locations' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 321
 Error javadoc JavadocMethod Missing a Javadoc comment. 321
 Error misc FinalParameters Parameter name should be final. 321
 Error coding HiddenField 'name' hides a field. 321
 Error misc FinalParameters Parameter value should be final. 321
 Error design DesignForExtension Class 'Locations' 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 'Locations' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 326
 Error sizes LineLength Line is longer than 80 characters (found 239). 328
 Error design DesignForExtension Class 'Locations' 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 'Locations' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 331
 Error misc FinalParameters Parameter other should be final. 332
 Error coding SimplifyBooleanExpression Expression can be simplified. 336
 Error sizes LineLength Line is longer than 80 characters (found 391). 340

org/apache/streams/moreover/Media.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 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 85). 45
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error misc FinalParameters Parameter duration should be final. 63
 Error coding HiddenField 'duration' hides a field. 63
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withDuration' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withDuration' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error misc FinalParameters Parameter duration should be final. 67
 Error coding HiddenField 'duration' hides a field. 67
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error misc FinalParameters Parameter audio should be final. 88
 Error coding HiddenField 'audio' hides a field. 88
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withAudio' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withAudio' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter audio should be final. 92
 Error coding HiddenField 'audio' hides a field. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error misc FinalParameters Parameter image should be final. 113
 Error coding HiddenField 'image' hides a field. 113
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withImage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withImage' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter image should be final. 117
 Error coding HiddenField 'image' hides a field. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error misc FinalParameters Parameter caption should be final. 138
 Error coding HiddenField 'caption' hides a field. 138
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withCaption' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withCaption' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Error javadoc JavadocMethod Missing a Javadoc comment. 142
 Error misc FinalParameters Parameter caption should be final. 142
 Error coding HiddenField 'caption' hides a field. 142
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error regexp RegexpSingleline Line has trailing spaces. 158
 Error misc FinalParameters Parameter video should be final. 163
 Error coding HiddenField 'video' hides a field. 163
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withVideo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withVideo' static/final/abstract/empty, or adding allowed annotation for the method. 167
 Error javadoc JavadocMethod Missing a Javadoc comment. 167
 Error misc FinalParameters Parameter video should be final. 167
 Error coding HiddenField 'video' hides a field. 167
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter url should be final. 188
 Error coding HiddenField 'url' hides a field. 188
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withUrl' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter url should be final. 192
 Error coding HiddenField 'url' hides a field. 192
 Error regexp RegexpSingleline Line has trailing spaces. 198
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error misc FinalParameters Parameter mimeType should be final. 213
 Error coding HiddenField 'mimeType' hides a field. 213
 Error design DesignForExtension Class 'Media' looks like designed for extension (can be subclassed), but the method 'withMimeType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Media' final or making the method 'withMimeType' static/final/abstract/empty, or adding allowed annotation for the method. 217
 Error javadoc JavadocMethod Missing a Javadoc comment. 217
 Error misc FinalParameters Parameter mimeType should be final. 217
 Error coding HiddenField 'mimeType' hides a field. 217
 Error design DesignForExtension Class 'Media' 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 'Media' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 222
 Error design DesignForExtension Class 'Media' 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 'Media' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 227
 Error javadoc JavadocMethod Missing a Javadoc comment. 227
 Error design DesignForExtension Class 'Media' 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 'Media' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 232
 Error javadoc JavadocMethod Missing a Javadoc comment. 232
 Error misc FinalParameters Parameter name should be final. 233
 Error misc FinalParameters Parameter value should be final. 233
 Error design DesignForExtension Class 'Media' 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 'Media' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 237
 Error javadoc JavadocMethod Missing a Javadoc comment. 237
 Error misc FinalParameters Parameter name should be final. 237
 Error misc FinalParameters Parameter value should be final. 237
 Error design DesignForExtension Class 'Media' 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 'Media' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 242
 Error sizes LineLength Line is longer than 80 characters (found 183). 244
 Error design DesignForExtension Class 'Media' 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 'Media' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 247
 Error misc FinalParameters Parameter other should be final. 248
 Error coding SimplifyBooleanExpression Expression can be simplified. 252
 Error sizes LineLength Line is longer than 80 characters (found 288). 256

org/apache/streams/moreover/Moreover.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 18
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 48
 Error javadoc JavadocVariable Missing a Javadoc comment. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 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 javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error javadoc JavadocVariable Missing a Javadoc comment. 80
 Error javadoc JavadocVariable Missing a Javadoc comment. 82
 Error javadoc JavadocVariable Missing a Javadoc comment. 84
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error javadoc JavadocVariable Missing a Javadoc comment. 88
 Error javadoc JavadocVariable Missing a Javadoc comment. 90
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error javadoc JavadocVariable Missing a Javadoc comment. 94
 Error sizes LineLength Line is longer than 80 characters (found 85). 95
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error misc FinalParameters Parameter tags should be final. 113
 Error coding HiddenField 'tags' hides a field. 113
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withTags' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter tags should be final. 117
 Error coding HiddenField 'tags' hides a field. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error misc FinalParameters Parameter publishingPlatform should be final. 138
 Error coding HiddenField 'publishingPlatform' hides a field. 138
 Error sizes LineLength Line is longer than 80 characters (found 83). 142
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withPublishingPlatform' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withPublishingPlatform' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Error javadoc JavadocMethod Missing a Javadoc comment. 142
 Error misc FinalParameters Parameter publishingPlatform should be final. 142
 Error coding HiddenField 'publishingPlatform' hides a field. 142
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error regexp RegexpSingleline Line has trailing spaces. 158
 Error misc FinalParameters Parameter loginStatus should be final. 163
 Error coding HiddenField 'loginStatus' hides a field. 163
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withLoginStatus' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withLoginStatus' static/final/abstract/empty, or adding allowed annotation for the method. 167
 Error javadoc JavadocMethod Missing a Javadoc comment. 167
 Error misc FinalParameters Parameter loginStatus should be final. 167
 Error coding HiddenField 'loginStatus' hides a field. 167
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter duplicateGroupId should be final. 188
 Error coding HiddenField 'duplicateGroupId' hides a field. 188
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withDuplicateGroupId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withDuplicateGroupId' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter duplicateGroupId should be final. 192
 Error coding HiddenField 'duplicateGroupId' hides a field. 192
 Error regexp RegexpSingleline Line has trailing spaces. 198
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error misc FinalParameters Parameter companies should be final. 213
 Error coding HiddenField 'companies' hides a field. 213
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withCompanies' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withCompanies' static/final/abstract/empty, or adding allowed annotation for the method. 217
 Error javadoc JavadocMethod Missing a Javadoc comment. 217
 Error misc FinalParameters Parameter companies should be final. 217
 Error coding HiddenField 'companies' hides a field. 217
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 233
 Error misc FinalParameters Parameter copyright should be final. 238
 Error coding HiddenField 'copyright' hides a field. 238
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withCopyright' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withCopyright' static/final/abstract/empty, or adding allowed annotation for the method. 242
 Error javadoc JavadocMethod Missing a Javadoc comment. 242
 Error misc FinalParameters Parameter copyright should be final. 242
 Error coding HiddenField 'copyright' hides a field. 242
 Error regexp RegexpSingleline Line has trailing spaces. 248
 Error regexp RegexpSingleline Line has trailing spaces. 258
 Error misc FinalParameters Parameter url should be final. 263
 Error coding HiddenField 'url' hides a field. 263
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withUrl' static/final/abstract/empty, or adding allowed annotation for the method. 267
 Error javadoc JavadocMethod Missing a Javadoc comment. 267
 Error misc FinalParameters Parameter url should be final. 267
 Error coding HiddenField 'url' hides a field. 267
 Error regexp RegexpSingleline Line has trailing spaces. 273
 Error regexp RegexpSingleline Line has trailing spaces. 283
 Error misc FinalParameters Parameter content should be final. 288
 Error coding HiddenField 'content' hides a field. 288
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withContent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withContent' static/final/abstract/empty, or adding allowed annotation for the method. 292
 Error javadoc JavadocMethod Missing a Javadoc comment. 292
 Error misc FinalParameters Parameter content should be final. 292
 Error coding HiddenField 'content' hides a field. 292
 Error regexp RegexpSingleline Line has trailing spaces. 298
 Error regexp RegexpSingleline Line has trailing spaces. 308
 Error misc FinalParameters Parameter id should be final. 313
 Error coding HiddenField 'id' hides a field. 313
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 317
 Error javadoc JavadocMethod Missing a Javadoc comment. 317
 Error misc FinalParameters Parameter id should be final. 317
 Error coding HiddenField 'id' hides a field. 317
 Error regexp RegexpSingleline Line has trailing spaces. 323
 Error regexp RegexpSingleline Line has trailing spaces. 333
 Error misc FinalParameters Parameter author should be final. 338
 Error coding HiddenField 'author' hides a field. 338
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withAuthor' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withAuthor' static/final/abstract/empty, or adding allowed annotation for the method. 342
 Error javadoc JavadocMethod Missing a Javadoc comment. 342
 Error misc FinalParameters Parameter author should be final. 342
 Error coding HiddenField 'author' hides a field. 342
 Error regexp RegexpSingleline Line has trailing spaces. 348
 Error regexp RegexpSingleline Line has trailing spaces. 358
 Error misc FinalParameters Parameter topics should be final. 363
 Error coding HiddenField 'topics' hides a field. 363
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withTopics' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withTopics' static/final/abstract/empty, or adding allowed annotation for the method. 367
 Error javadoc JavadocMethod Missing a Javadoc comment. 367
 Error misc FinalParameters Parameter topics should be final. 367
 Error coding HiddenField 'topics' hides a field. 367
 Error regexp RegexpSingleline Line has trailing spaces. 373
 Error regexp RegexpSingleline Line has trailing spaces. 383
 Error misc FinalParameters Parameter title should be final. 388
 Error coding HiddenField 'title' hides a field. 388
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withTitle' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withTitle' static/final/abstract/empty, or adding allowed annotation for the method. 392
 Error javadoc JavadocMethod Missing a Javadoc comment. 392
 Error misc FinalParameters Parameter title should be final. 392
 Error coding HiddenField 'title' hides a field. 392
 Error regexp RegexpSingleline Line has trailing spaces. 398
 Error regexp RegexpSingleline Line has trailing spaces. 408
 Error misc FinalParameters Parameter source should be final. 413
 Error coding HiddenField 'source' hides a field. 413
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withSource' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withSource' static/final/abstract/empty, or adding allowed annotation for the method. 417
 Error javadoc JavadocMethod Missing a Javadoc comment. 417
 Error misc FinalParameters Parameter source should be final. 417
 Error coding HiddenField 'source' hides a field. 417
 Error regexp RegexpSingleline Line has trailing spaces. 423
 Error regexp RegexpSingleline Line has trailing spaces. 433
 Error misc FinalParameters Parameter locations should be final. 438
 Error coding HiddenField 'locations' hides a field. 438
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withLocations' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withLocations' static/final/abstract/empty, or adding allowed annotation for the method. 442
 Error javadoc JavadocMethod Missing a Javadoc comment. 442
 Error misc FinalParameters Parameter locations should be final. 442
 Error coding HiddenField 'locations' hides a field. 442
 Error regexp RegexpSingleline Line has trailing spaces. 448
 Error regexp RegexpSingleline Line has trailing spaces. 458
 Error misc FinalParameters Parameter commentsUrl should be final. 463
 Error coding HiddenField 'commentsUrl' hides a field. 463
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withCommentsUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withCommentsUrl' static/final/abstract/empty, or adding allowed annotation for the method. 467
 Error javadoc JavadocMethod Missing a Javadoc comment. 467
 Error misc FinalParameters Parameter commentsUrl should be final. 467
 Error coding HiddenField 'commentsUrl' hides a field. 467
 Error regexp RegexpSingleline Line has trailing spaces. 473
 Error regexp RegexpSingleline Line has trailing spaces. 483
 Error misc FinalParameters Parameter dataFormat should be final. 488
 Error coding HiddenField 'dataFormat' hides a field. 488
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withDataFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withDataFormat' static/final/abstract/empty, or adding allowed annotation for the method. 492
 Error javadoc JavadocMethod Missing a Javadoc comment. 492
 Error misc FinalParameters Parameter dataFormat should be final. 492
 Error coding HiddenField 'dataFormat' hides a field. 492
 Error regexp RegexpSingleline Line has trailing spaces. 498
 Error regexp RegexpSingleline Line has trailing spaces. 508
 Error misc FinalParameters Parameter outboundUrls should be final. 513
 Error coding HiddenField 'outboundUrls' hides a field. 513
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withOutboundUrls' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withOutboundUrls' static/final/abstract/empty, or adding allowed annotation for the method. 517
 Error javadoc JavadocMethod Missing a Javadoc comment. 517
 Error misc FinalParameters Parameter outboundUrls should be final. 517
 Error coding HiddenField 'outboundUrls' hides a field. 517
 Error regexp RegexpSingleline Line has trailing spaces. 523
 Error regexp RegexpSingleline Line has trailing spaces. 533
 Error misc FinalParameters Parameter sequenceId should be final. 538
 Error coding HiddenField 'sequenceId' hides a field. 538
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withSequenceId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withSequenceId' static/final/abstract/empty, or adding allowed annotation for the method. 542
 Error javadoc JavadocMethod Missing a Javadoc comment. 542
 Error misc FinalParameters Parameter sequenceId should be final. 542
 Error coding HiddenField 'sequenceId' hides a field. 542
 Error regexp RegexpSingleline Line has trailing spaces. 548
 Error regexp RegexpSingleline Line has trailing spaces. 558
 Error misc FinalParameters Parameter publishedDate should be final. 563
 Error coding HiddenField 'publishedDate' hides a field. 563
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withPublishedDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withPublishedDate' static/final/abstract/empty, or adding allowed annotation for the method. 567
 Error javadoc JavadocMethod Missing a Javadoc comment. 567
 Error misc FinalParameters Parameter publishedDate should be final. 567
 Error coding HiddenField 'publishedDate' hides a field. 567
 Error regexp RegexpSingleline Line has trailing spaces. 573
 Error regexp RegexpSingleline Line has trailing spaces. 583
 Error misc FinalParameters Parameter language should be final. 588
 Error coding HiddenField 'language' hides a field. 588
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withLanguage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withLanguage' static/final/abstract/empty, or adding allowed annotation for the method. 592
 Error javadoc JavadocMethod Missing a Javadoc comment. 592
 Error misc FinalParameters Parameter language should be final. 592
 Error coding HiddenField 'language' hides a field. 592
 Error regexp RegexpSingleline Line has trailing spaces. 598
 Error regexp RegexpSingleline Line has trailing spaces. 608
 Error misc FinalParameters Parameter adultLanguage should be final. 613
 Error coding HiddenField 'adultLanguage' hides a field. 613
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withAdultLanguage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withAdultLanguage' static/final/abstract/empty, or adding allowed annotation for the method. 617
 Error javadoc JavadocMethod Missing a Javadoc comment. 617
 Error misc FinalParameters Parameter adultLanguage should be final. 617
 Error coding HiddenField 'adultLanguage' hides a field. 617
 Error regexp RegexpSingleline Line has trailing spaces. 623
 Error regexp RegexpSingleline Line has trailing spaces. 633
 Error misc FinalParameters Parameter harvestDate should be final. 638
 Error coding HiddenField 'harvestDate' hides a field. 638
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withHarvestDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withHarvestDate' static/final/abstract/empty, or adding allowed annotation for the method. 642
 Error javadoc JavadocMethod Missing a Javadoc comment. 642
 Error misc FinalParameters Parameter harvestDate should be final. 642
 Error coding HiddenField 'harvestDate' hides a field. 642
 Error regexp RegexpSingleline Line has trailing spaces. 648
 Error regexp RegexpSingleline Line has trailing spaces. 658
 Error misc FinalParameters Parameter media should be final. 663
 Error coding HiddenField 'media' hides a field. 663
 Error design DesignForExtension Class 'Moreover' looks like designed for extension (can be subclassed), but the method 'withMedia' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Moreover' final or making the method 'withMedia' static/final/abstract/empty, or adding allowed annotation for the method. 667
 Error javadoc JavadocMethod Missing a Javadoc comment. 667
 Error misc FinalParameters Parameter media should be final. 667
 Error coding HiddenField 'media' hides a field. 667
 Error design DesignForExtension Class 'Moreover' 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 'Moreover' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 672
 Error design DesignForExtension Class 'Moreover' 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 'Moreover' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 677
 Error javadoc JavadocMethod Missing a Javadoc comment. 677
 Error design DesignForExtension Class 'Moreover' 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 'Moreover' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 682
 Error javadoc JavadocMethod Missing a Javadoc comment. 682
 Error misc FinalParameters Parameter name should be final. 683
 Error misc FinalParameters Parameter value should be final. 683
 Error design DesignForExtension Class 'Moreover' 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 'Moreover' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 687
 Error javadoc JavadocMethod Missing a Javadoc comment. 687
 Error misc FinalParameters Parameter name should be final. 687
 Error misc FinalParameters Parameter value should be final. 687
 Error design DesignForExtension Class 'Moreover' 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 'Moreover' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 692
 Error sizes LineLength Line is longer than 80 characters (found 490). 694
 Error design DesignForExtension Class 'Moreover' 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 'Moreover' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 697
 Error misc FinalParameters Parameter other should be final. 698
 Error coding SimplifyBooleanExpression Expression can be simplified. 702
 Error sizes LineLength Line is longer than 80 characters (found 854). 706

org/apache/streams/moreover/MoreoverClient.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 85). 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error naming ConstantName Name 'logger' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 39
 Error sizes LineLength Line is longer than 80 characters (found 120). 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error design VisibilityModifier Variable 'pullTime' must be private and have accessor methods. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error misc FinalParameters Parameter id should be final. 55
 Error coding HiddenField 'id' hides a field. 55
 Error misc FinalParameters Parameter apiKey should be final. 55
 Error coding HiddenField 'apiKey' hides a field. 55
 Error misc FinalParameters Parameter sequence should be final. 55
 Error sizes LineLength Line is longer than 80 characters (found 93). 56
 Error sizes LineLength Line is longer than 80 characters (found 91). 69
 Error misc FinalParameters Parameter sequenceId should be final. 69
 Error misc FinalParameters Parameter limit should be final. 69
 Error sizes LineLength Line is longer than 80 characters (found 110). 73
 Error sizes LineLength Line is longer than 80 characters (found 88). 78
 Error design DesignForExtension Class 'MoreoverClient' looks like designed for extension (can be subclassed), but the method 'getNextBatch' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverClient' final or making the method 'getNextBatch' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error sizes LineLength Line is longer than 80 characters (found 97). 84
 Error coding MagicNumber '500' is a magic number. 85
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter url should be final. 88
 Error sizes LineLength Line is longer than 80 characters (found 117). 94
 Error sizes LineLength Line is longer than 80 characters (found 96). 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 105
 Error misc FinalParameters Parameter url should be final. 105
 Error sizes LineLength Line is longer than 80 characters (found 95). 112

org/apache/streams/moreover/MoreoverConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 22
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error sizes LineLength Line is longer than 80 characters (found 85). 41
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error misc FinalParameters Parameter apiKeys should be final. 59
 Error coding HiddenField 'apiKeys' hides a field. 59
 Error design DesignForExtension Class 'MoreoverConfiguration' looks like designed for extension (can be subclassed), but the method 'withApiKeys' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverConfiguration' final or making the method 'withApiKeys' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error misc FinalParameters Parameter apiKeys should be final. 63
 Error coding HiddenField 'apiKeys' hides a field. 63
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error misc FinalParameters Parameter maxBatchSize should be final. 84
 Error coding HiddenField 'maxBatchSize' hides a field. 84
 Error design DesignForExtension Class 'MoreoverConfiguration' looks like designed for extension (can be subclassed), but the method 'withMaxBatchSize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverConfiguration' final or making the method 'withMaxBatchSize' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter maxBatchSize should be final. 88
 Error coding HiddenField 'maxBatchSize' hides a field. 88
 Error regexp RegexpSingleline Line has trailing spaces. 94
 Error regexp RegexpSingleline Line has trailing spaces. 104
 Error misc FinalParameters Parameter minDelaySeconds should be final. 109
 Error coding HiddenField 'minDelaySeconds' hides a field. 109
 Error design DesignForExtension Class 'MoreoverConfiguration' looks like designed for extension (can be subclassed), but the method 'withMinDelaySeconds' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverConfiguration' final or making the method 'withMinDelaySeconds' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error javadoc JavadocMethod Missing a Javadoc comment. 113
 Error misc FinalParameters Parameter minDelaySeconds should be final. 113
 Error coding HiddenField 'minDelaySeconds' hides a field. 113
 Error design DesignForExtension Class 'MoreoverConfiguration' 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 'MoreoverConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 118
 Error design DesignForExtension Class 'MoreoverConfiguration' 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 'MoreoverConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 123
 Error javadoc JavadocMethod Missing a Javadoc comment. 123
 Error design DesignForExtension Class 'MoreoverConfiguration' 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 'MoreoverConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 128
 Error javadoc JavadocMethod Missing a Javadoc comment. 128
 Error misc FinalParameters Parameter name should be final. 129
 Error misc FinalParameters Parameter value should be final. 129
 Error sizes LineLength Line is longer than 80 characters (found 84). 133
 Error design DesignForExtension Class 'MoreoverConfiguration' 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 'MoreoverConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error misc FinalParameters Parameter name should be final. 133
 Error misc FinalParameters Parameter value should be final. 133
 Error design DesignForExtension Class 'MoreoverConfiguration' 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 'MoreoverConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error sizes LineLength Line is longer than 80 characters (found 140). 140
 Error design DesignForExtension Class 'MoreoverConfiguration' 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 'MoreoverConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 143
 Error misc FinalParameters Parameter other should be final. 144
 Error coding SimplifyBooleanExpression Expression can be simplified. 148
 Error sizes LineLength Line is longer than 80 characters (found 214). 152

org/apache/streams/moreover/MoreoverJsonActivitySerializer.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 83). 40
 Error sizes LineLength Line is longer than 80 characters (found 101). 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocMethod Missing a Javadoc comment. 44
 Error design DesignForExtension Class 'MoreoverJsonActivitySerializer' 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 'MoreoverJsonActivitySerializer' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 47
 Error design DesignForExtension Class 'MoreoverJsonActivitySerializer' looks like designed for extension (can be subclassed), but the method 'serialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverJsonActivitySerializer' final or making the method 'serialize' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error misc FinalParameters Parameter deserialized should be final. 53
 Error sizes LineLength Line is longer than 80 characters (found 91). 54
 Error design DesignForExtension Class 'MoreoverJsonActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverJsonActivitySerializer' final or making the method 'deserialize' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error misc FinalParameters Parameter serialized should be final. 58
 Error sizes LineLength Line is longer than 80 characters (found 98). 64
 Error sizes LineLength Line is longer than 80 characters (found 87). 66
 Error sizes LineLength Line is longer than 80 characters (found 84). 67
 Error sizes LineLength Line is longer than 80 characters (found 88). 68
 Error sizes LineLength Line is longer than 80 characters (found 94). 69
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 74
 Error design DesignForExtension Class 'MoreoverJsonActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserializeAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverJsonActivitySerializer' final or making the method 'deserializeAll' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error misc FinalParameters Parameter serializedList should be final. 93

org/apache/streams/moreover/MoreoverKeyData.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 18
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error sizes LineLength Line is longer than 80 characters (found 85). 35
 Error regexp RegexpSingleline Line has trailing spaces. 38
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error misc FinalParameters Parameter id should be final. 53
 Error coding HiddenField 'id' hides a field. 53
 Error design DesignForExtension Class 'MoreoverKeyData' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverKeyData' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 57
 Error javadoc JavadocMethod Missing a Javadoc comment. 57
 Error misc FinalParameters Parameter id should be final. 57
 Error coding HiddenField 'id' hides a field. 57
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error misc FinalParameters Parameter key should be final. 78
 Error coding HiddenField 'key' hides a field. 78
 Error design DesignForExtension Class 'MoreoverKeyData' looks like designed for extension (can be subclassed), but the method 'withKey' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverKeyData' final or making the method 'withKey' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error javadoc JavadocMethod Missing a Javadoc comment. 82
 Error misc FinalParameters Parameter key should be final. 82
 Error coding HiddenField 'key' hides a field. 82
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error misc FinalParameters Parameter startingSequence should be final. 103
 Error coding HiddenField 'startingSequence' hides a field. 103
 Error design DesignForExtension Class 'MoreoverKeyData' looks like designed for extension (can be subclassed), but the method 'withStartingSequence' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverKeyData' final or making the method 'withStartingSequence' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error javadoc JavadocMethod Missing a Javadoc comment. 107
 Error misc FinalParameters Parameter startingSequence should be final. 107
 Error coding HiddenField 'startingSequence' hides a field. 107
 Error design DesignForExtension Class 'MoreoverKeyData' 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 'MoreoverKeyData' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error design DesignForExtension Class 'MoreoverKeyData' 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 'MoreoverKeyData' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error design DesignForExtension Class 'MoreoverKeyData' 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 'MoreoverKeyData' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 122
 Error javadoc JavadocMethod Missing a Javadoc comment. 122
 Error misc FinalParameters Parameter name should be final. 123
 Error misc FinalParameters Parameter value should be final. 123
 Error design DesignForExtension Class 'MoreoverKeyData' 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 'MoreoverKeyData' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 127
 Error javadoc JavadocMethod Missing a Javadoc comment. 127
 Error misc FinalParameters Parameter name should be final. 127
 Error misc FinalParameters Parameter value should be final. 127
 Error design DesignForExtension Class 'MoreoverKeyData' 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 'MoreoverKeyData' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 132
 Error sizes LineLength Line is longer than 80 characters (found 127). 134
 Error design DesignForExtension Class 'MoreoverKeyData' 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 'MoreoverKeyData' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 137
 Error misc FinalParameters Parameter other should be final. 138
 Error coding SimplifyBooleanExpression Expression can be simplified. 142
 Error sizes LineLength Line is longer than 80 characters (found 188). 146

org/apache/streams/moreover/MoreoverProvider.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error sizes LineLength Line is longer than 80 characters (found 87). 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error sizes LineLength Line is longer than 80 characters (found 87). 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'providerQueue' must be private and have accessor methods. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error misc FinalParameters Parameter moreoverConfiguration should be final. 76
 Error whitespace ParenPad '(' is followed by whitespace. 79
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 84
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 89
 Error sizes LineLength Line is longer than 80 characters (found 133). 93
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 100
 Error sizes LineLength Line is longer than 80 characters (found 98). 108
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 115
 Error misc FinalParameters Parameter sequence should be final. 116
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 120
 Error misc FinalParameters Parameter start should be final. 121
 Error misc FinalParameters Parameter end should be final. 121
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 125
 Error design DesignForExtension Class 'MoreoverProvider' 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 'MoreoverProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 130
 Error misc FinalParameters Parameter configurationObject should be final. 131
 Error javadoc JavadocStyle First sentence should end with a period. 141
 Error sizes LineLength Line is longer than 80 characters (found 117). 151
 Error misc FinalParameters Parameter args should be final. 156
 Error sizes LineLength Line is longer than 80 characters (found 125). 166
 Error sizes LineLength Line is longer than 80 characters (found 98). 170
 Error sizes LineLength Line is longer than 80 characters (found 129). 171
 Error sizes LineLength Line is longer than 80 characters (found 101). 176
 Error sizes LineLength Line is longer than 80 characters (found 111). 180
 Error whitespace ParenPad '(' is followed by whitespace. 191
 Error whitespace ParenPad ')' is preceded with whitespace. 191

org/apache/streams/moreover/MoreoverProviderTask.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error sizes LineLength Line is longer than 80 characters (found 85). 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error sizes LineLength Line is longer than 80 characters (found 110). 51
 Error misc FinalParameters Parameter apiId should be final. 51
 Error misc FinalParameters Parameter apiKey should be final. 51
 Error coding HiddenField 'apiKey' hides a field. 51
 Error misc FinalParameters Parameter results should be final. 51
 Error coding HiddenField 'results' hides a field. 51
 Error misc FinalParameters Parameter lastSequence should be final. 51
 Error coding HiddenField 'lastSequence' hides a field. 51
 Error sizes LineLength Line is longer than 80 characters (found 117). 52
 Error design DesignForExtension Class 'MoreoverProviderTask' 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 'MoreoverProviderTask' final or making the method 'run' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error coding MagicNumber '500' is a magic number. 65
 Error javadoc JavadocMethod Missing a Javadoc comment. 79
 Error misc FinalParameters Parameter moClient should be final. 79
 Error coding HiddenField 'moClient' hides a field. 79
 Error javadoc JavadocMethod Missing a Javadoc comment. 90
 Error misc FinalParameters Parameter moClient should be final. 90
 Error coding HiddenField 'moClient' hides a field. 90

org/apache/streams/moreover/MoreoverResult.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 42
 Error sizes LineLength Line is longer than 80 characters (found 85). 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error naming ConstantName Name 'logger' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 44
 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. 50
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error design VisibilityModifier Variable 'response' must be private and have accessor methods. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 59
 Error design VisibilityModifier Variable 'list' must be private and have accessor methods. 59
 Error sizes LineLength Line is longer than 80 characters (found 85). 61
 Error javadoc JavadocMethod Missing a Javadoc comment. 61
 Error misc FinalParameters Parameter clientId should be final. 61
 Error coding HiddenField 'clientId' hides a field. 61
 Error misc FinalParameters Parameter xmlString should be final. 61
 Error coding HiddenField 'xmlString' hides a field. 61
 Error misc FinalParameters Parameter start should be final. 61
 Error coding HiddenField 'start' hides a field. 61
 Error misc FinalParameters Parameter end should be final. 61
 Error coding HiddenField 'end' hides a field. 61
 Error design DesignForExtension Class 'MoreoverResult' looks like designed for extension (can be subclassed), but the method 'getClientId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverResult' final or making the method 'getClientId' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error javadoc JavadocMethod Missing a Javadoc comment. 113
 Error design DesignForExtension Class 'MoreoverResult' looks like designed for extension (can be subclassed), but the method 'getStart' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverResult' final or making the method 'getStart' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error design DesignForExtension Class 'MoreoverResult' looks like designed for extension (can be subclassed), but the method 'getEnd' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverResult' final or making the method 'getEnd' static/final/abstract/empty, or adding allowed annotation for the method. 121
 Error javadoc JavadocMethod Missing a Javadoc comment. 121
 Error javadoc JavadocStyle First sentence should end with a period. 125
 Error sizes LineLength Line is longer than 80 characters (found 81). 132
 Error whitespace ParenPad '(' is followed by whitespace. 142
 Error sizes LineLength Line is longer than 80 characters (found 103). 154
 Error design DesignForExtension Class 'MoreoverResult' looks like designed for extension (can be subclassed), but the method 'getXmlString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverResult' final or making the method 'getXmlString' static/final/abstract/empty, or adding allowed annotation for the method. 164
 Error javadoc JavadocMethod Missing a Javadoc comment. 164
 Error design DesignForExtension Class 'MoreoverResult' looks like designed for extension (can be subclassed), but the method 'getMaxSequencedId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverResult' final or making the method 'getMaxSequencedId' static/final/abstract/empty, or adding allowed annotation for the method. 168
 Error javadoc JavadocMethod Missing a Javadoc comment. 168
 Error design DesignForExtension Class 'MoreoverResult' looks like designed for extension (can be subclassed), but the method 'iterator' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverResult' final or making the method 'iterator' static/final/abstract/empty, or adding allowed annotation for the method. 172
 Error javadoc JavadocType Missing a Javadoc comment. 177
 Error javadoc JavadocVariable Missing a Javadoc comment. 179
 Error javadoc JavadocMethod Missing a Javadoc comment. 181
 Error misc FinalParameters Parameter underlying should be final. 181
 Error coding HiddenField 'underlying' hides a field. 181
 Error design DesignForExtension Class 'JsonStringIterator' looks like designed for extension (can be subclassed), but the method 'hasNext' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JsonStringIterator' final or making the method 'hasNext' static/final/abstract/empty, or adding allowed annotation for the method. 185
 Error design DesignForExtension Class 'JsonStringIterator' looks like designed for extension (can be subclassed), but the method 'next' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JsonStringIterator' final or making the method 'next' static/final/abstract/empty, or adding allowed annotation for the method. 190
 Error design DesignForExtension Class 'JsonStringIterator' looks like designed for extension (can be subclassed), but the method 'remove' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'JsonStringIterator' final or making the method 'remove' static/final/abstract/empty, or adding allowed annotation for the method. 195

org/apache/streams/moreover/MoreoverUtils.java

Severity Category Rule Message Line
 Error design FinalClass Class MoreoverUtils should be declared as final. 47
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter article should be final. 59
 Error misc FinalParameters Parameter source should be final. 82
 Error sizes LineLength Line is longer than 80 characters (found 95). 86
 Error misc FinalParameters Parameter author should be final. 98
 Error misc FinalParameters Parameter platformName should be final. 98
 Error sizes LineLength Line is longer than 80 characters (found 81). 103
 Error javadoc JavadocMethod Missing a Javadoc comment. 112
 Error misc FinalParameters Parameter activity should be final. 112
 Error javadoc JavadocMethod Missing a Javadoc comment. 118
 Error misc FinalParameters Parameter article should be final. 118
 Error misc FinalParameters Parameter source should be final. 134
 Error misc FinalParameters Parameter article should be final. 146
 Error sizes LineLength Line is longer than 80 characters (found 95). 152
 Error coding AvoidInlineConditionals Avoid inline conditionals. 152
 Error sizes LineLength Line is longer than 80 characters (found 99). 153
 Error misc FinalParameters Parameter activity should be final. 163
 Error misc FinalParameters Parameter source should be final. 163
 Error sizes LineLength Line is longer than 80 characters (found 92). 164
 Error coding AvoidInlineConditionals Avoid inline conditionals. 166
 Error misc FinalParameters Parameter activity should be final. 180
 Error misc FinalParameters Parameter article should be final. 180
 Error sizes LineLength Line is longer than 80 characters (found 92). 181
 Error javadoc JavadocMethod Missing a Javadoc comment. 188
 Error misc FinalParameters Parameter feed should be final. 188
 Error sizes LineLength Line is longer than 80 characters (found 116). 189
 Error coding AvoidInlineConditionals Avoid inline conditionals. 189
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter feed should be final. 192

org/apache/streams/moreover/MoreoverXmlActivitySerializer.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 92). 38
 Error sizes LineLength Line is longer than 80 characters (found 82). 40
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error design DesignForExtension Class 'MoreoverXmlActivitySerializer' 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 'MoreoverXmlActivitySerializer' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 51
 Error design DesignForExtension Class 'MoreoverXmlActivitySerializer' looks like designed for extension (can be subclassed), but the method 'serialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverXmlActivitySerializer' final or making the method 'serialize' static/final/abstract/empty, or adding allowed annotation for the method. 56
 Error misc FinalParameters Parameter deserialized should be final. 57
 Error sizes LineLength Line is longer than 80 characters (found 86). 58
 Error design DesignForExtension Class 'MoreoverXmlActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverXmlActivitySerializer' final or making the method 'deserialize' static/final/abstract/empty, or adding allowed annotation for the method. 61
 Error misc FinalParameters Parameter serialized should be final. 62
 Error design DesignForExtension Class 'MoreoverXmlActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserializeAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MoreoverXmlActivitySerializer' final or making the method 'deserializeAll' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error misc FinalParameters Parameter serializedList should be final. 68
 Error javadoc JavadocMethod Missing a Javadoc comment. 79
 Error misc FinalParameters Parameter serialized should be final. 79
 Error sizes LineLength Line is longer than 80 characters (found 82). 84
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter serialized should be final. 88
 Error sizes LineLength Line is longer than 80 characters (found 111). 91
 Error sizes LineLength Line is longer than 80 characters (found 82). 93
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter articleClass should be final. 97
 Error sizes LineLength Line is longer than 80 characters (found 115). 100
 Error sizes LineLength Line is longer than 80 characters (found 93). 102

org/apache/streams/moreover/PublishingPlatform.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter totalViews should be final. 48
 Error coding HiddenField 'totalViews' hides a field. 48
 Error design DesignForExtension Class 'PublishingPlatform' looks like designed for extension (can be subclassed), but the method 'withTotalViews' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublishingPlatform' final or making the method 'withTotalViews' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter totalViews should be final. 52
 Error coding HiddenField 'totalViews' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter itemId should be final. 73
 Error coding HiddenField 'itemId' hides a field. 73
 Error design DesignForExtension Class 'PublishingPlatform' looks like designed for extension (can be subclassed), but the method 'withItemId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublishingPlatform' final or making the method 'withItemId' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter itemId should be final. 77
 Error coding HiddenField 'itemId' hides a field. 77
 Error design DesignForExtension Class 'PublishingPlatform' 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 'PublishingPlatform' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'PublishingPlatform' 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 'PublishingPlatform' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'PublishingPlatform' 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 'PublishingPlatform' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error sizes LineLength Line is longer than 80 characters (found 81). 97
 Error design DesignForExtension Class 'PublishingPlatform' 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 'PublishingPlatform' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'PublishingPlatform' 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 'PublishingPlatform' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 113). 104
 Error design DesignForExtension Class 'PublishingPlatform' 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 'PublishingPlatform' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 163). 116

org/apache/streams/moreover/PublishingPlatform_.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error naming TypeName Name 'PublishingPlatform_' must match pattern '^[A-Z][a-zA-Z0-9]*$'. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter userId should be final. 48
 Error coding HiddenField 'userId' hides a field. 48
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'withUserId' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter userId should be final. 52
 Error coding HiddenField 'userId' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter totalViews should be final. 73
 Error coding HiddenField 'totalViews' hides a field. 73
 Error design DesignForExtension Class 'PublishingPlatform_' looks like designed for extension (can be subclassed), but the method 'withTotalViews' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'PublishingPlatform_' final or making the method 'withTotalViews' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter totalViews should be final. 77
 Error coding HiddenField 'totalViews' hides a field. 77
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error sizes LineLength Line is longer than 80 characters (found 82). 97
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 113). 104
 Error design DesignForExtension Class 'PublishingPlatform_' 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 'PublishingPlatform_' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 163). 116

org/apache/streams/moreover/Rank.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error sizes LineLength Line is longer than 80 characters (found 85). 33
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error misc FinalParameters Parameter autoRankOrder should be final. 51
 Error coding HiddenField 'autoRankOrder' hides a field. 51
 Error design DesignForExtension Class 'Rank' looks like designed for extension (can be subclassed), but the method 'withAutoRankOrder' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Rank' final or making the method 'withAutoRankOrder' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error javadoc JavadocMethod Missing a Javadoc comment. 55
 Error misc FinalParameters Parameter autoRankOrder should be final. 55
 Error coding HiddenField 'autoRankOrder' hides a field. 55
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error misc FinalParameters Parameter inboundLinkCount should be final. 76
 Error coding HiddenField 'inboundLinkCount' hides a field. 76
 Error design DesignForExtension Class 'Rank' looks like designed for extension (can be subclassed), but the method 'withInboundLinkCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Rank' final or making the method 'withInboundLinkCount' static/final/abstract/empty, or adding allowed annotation for the method. 80
 Error javadoc JavadocMethod Missing a Javadoc comment. 80
 Error misc FinalParameters Parameter inboundLinkCount should be final. 80
 Error coding HiddenField 'inboundLinkCount' hides a field. 80
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error regexp RegexpSingleline Line has trailing spaces. 96
 Error misc FinalParameters Parameter autoRank should be final. 101
 Error coding HiddenField 'autoRank' hides a field. 101
 Error design DesignForExtension Class 'Rank' looks like designed for extension (can be subclassed), but the method 'withAutoRank' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Rank' final or making the method 'withAutoRank' static/final/abstract/empty, or adding allowed annotation for the method. 105
 Error javadoc JavadocMethod Missing a Javadoc comment. 105
 Error misc FinalParameters Parameter autoRank should be final. 105
 Error coding HiddenField 'autoRank' hides a field. 105
 Error design DesignForExtension Class 'Rank' 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 'Rank' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 110
 Error design DesignForExtension Class 'Rank' 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 'Rank' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 115
 Error javadoc JavadocMethod Missing a Javadoc comment. 115
 Error design DesignForExtension Class 'Rank' 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 'Rank' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 120
 Error javadoc JavadocMethod Missing a Javadoc comment. 120
 Error misc FinalParameters Parameter name should be final. 121
 Error misc FinalParameters Parameter value should be final. 121
 Error design DesignForExtension Class 'Rank' 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 'Rank' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 125
 Error javadoc JavadocMethod Missing a Javadoc comment. 125
 Error misc FinalParameters Parameter name should be final. 125
 Error misc FinalParameters Parameter value should be final. 125
 Error design DesignForExtension Class 'Rank' 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 'Rank' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 130
 Error sizes LineLength Line is longer than 80 characters (found 143). 132
 Error design DesignForExtension Class 'Rank' 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 'Rank' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 135
 Error misc FinalParameters Parameter other should be final. 136
 Error coding SimplifyBooleanExpression Expression can be simplified. 140
 Error sizes LineLength Line is longer than 80 characters (found 220). 144

org/apache/streams/moreover/Source.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 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 85). 45
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error misc FinalParameters Parameter category should be final. 63
 Error coding HiddenField 'category' hides a field. 63
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withCategory' static/final/abstract/empty, or adding allowed annotation for the method. 67
 Error javadoc JavadocMethod Missing a Javadoc comment. 67
 Error misc FinalParameters Parameter category should be final. 67
 Error coding HiddenField 'category' hides a field. 67
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error misc FinalParameters Parameter location should be final. 88
 Error coding HiddenField 'location' hides a field. 88
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withLocation' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withLocation' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter location should be final. 92
 Error coding HiddenField 'location' hides a field. 92
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error misc FinalParameters Parameter editorialRank should be final. 113
 Error coding HiddenField 'editorialRank' hides a field. 113
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withEditorialRank' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withEditorialRank' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter editorialRank should be final. 117
 Error coding HiddenField 'editorialRank' hides a field. 117
 Error regexp RegexpSingleline Line has trailing spaces. 123
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error misc FinalParameters Parameter name should be final. 138
 Error coding HiddenField 'name' hides a field. 138
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Error javadoc JavadocMethod Missing a Javadoc comment. 142
 Error misc FinalParameters Parameter name should be final. 142
 Error coding HiddenField 'name' hides a field. 142
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error regexp RegexpSingleline Line has trailing spaces. 158
 Error misc FinalParameters Parameter feed should be final. 163
 Error coding HiddenField 'feed' hides a field. 163
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withFeed' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withFeed' static/final/abstract/empty, or adding allowed annotation for the method. 167
 Error javadoc JavadocMethod Missing a Javadoc comment. 167
 Error misc FinalParameters Parameter feed should be final. 167
 Error coding HiddenField 'feed' hides a field. 167
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter homeUrl should be final. 188
 Error coding HiddenField 'homeUrl' hides a field. 188
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withHomeUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withHomeUrl' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter homeUrl should be final. 192
 Error coding HiddenField 'homeUrl' hides a field. 192
 Error regexp RegexpSingleline Line has trailing spaces. 198
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error misc FinalParameters Parameter publisher should be final. 213
 Error coding HiddenField 'publisher' hides a field. 213
 Error design DesignForExtension Class 'Source' looks like designed for extension (can be subclassed), but the method 'withPublisher' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Source' final or making the method 'withPublisher' static/final/abstract/empty, or adding allowed annotation for the method. 217
 Error javadoc JavadocMethod Missing a Javadoc comment. 217
 Error misc FinalParameters Parameter publisher should be final. 217
 Error coding HiddenField 'publisher' hides a field. 217
 Error design DesignForExtension Class 'Source' 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 'Source' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 222
 Error design DesignForExtension Class 'Source' 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 'Source' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 227
 Error javadoc JavadocMethod Missing a Javadoc comment. 227
 Error design DesignForExtension Class 'Source' 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 'Source' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 232
 Error javadoc JavadocMethod Missing a Javadoc comment. 232
 Error misc FinalParameters Parameter name should be final. 233
 Error coding HiddenField 'name' hides a field. 233
 Error misc FinalParameters Parameter value should be final. 233
 Error design DesignForExtension Class 'Source' 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 'Source' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 237
 Error javadoc JavadocMethod Missing a Javadoc comment. 237
 Error misc FinalParameters Parameter name should be final. 237
 Error coding HiddenField 'name' hides a field. 237
 Error misc FinalParameters Parameter value should be final. 237
 Error design DesignForExtension Class 'Source' 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 'Source' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 242
 Error sizes LineLength Line is longer than 80 characters (found 195). 244
 Error design DesignForExtension Class 'Source' 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 'Source' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 247
 Error misc FinalParameters Parameter other should be final. 248
 Error coding SimplifyBooleanExpression Expression can be simplified. 252
 Error sizes LineLength Line is longer than 80 characters (found 312). 256

org/apache/streams/moreover/State.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error sizes LineLength Line is longer than 80 characters (found 85). 33
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error misc FinalParameters Parameter name should be final. 51
 Error coding HiddenField 'name' hides a field. 51
 Error design DesignForExtension Class 'State' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'State' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error javadoc JavadocMethod Missing a Javadoc comment. 55
 Error misc FinalParameters Parameter name should be final. 55
 Error coding HiddenField 'name' hides a field. 55
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error misc FinalParameters Parameter fipsCode should be final. 76
 Error coding HiddenField 'fipsCode' hides a field. 76
 Error design DesignForExtension Class 'State' looks like designed for extension (can be subclassed), but the method 'withFipsCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'State' final or making the method 'withFipsCode' static/final/abstract/empty, or adding allowed annotation for the method. 80
 Error javadoc JavadocMethod Missing a Javadoc comment. 80
 Error misc FinalParameters Parameter fipsCode should be final. 80
 Error coding HiddenField 'fipsCode' hides a field. 80
 Error regexp RegexpSingleline Line has trailing spaces. 86
 Error regexp RegexpSingleline Line has trailing spaces. 96
 Error misc FinalParameters Parameter confidence should be final. 101
 Error coding HiddenField 'confidence' hides a field. 101
 Error design DesignForExtension Class 'State' looks like designed for extension (can be subclassed), but the method 'withConfidence' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'State' final or making the method 'withConfidence' static/final/abstract/empty, or adding allowed annotation for the method. 105
 Error javadoc JavadocMethod Missing a Javadoc comment. 105
 Error misc FinalParameters Parameter confidence should be final. 105
 Error coding HiddenField 'confidence' hides a field. 105
 Error design DesignForExtension Class 'State' 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 'State' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 110
 Error design DesignForExtension Class 'State' 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 'State' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 115
 Error javadoc JavadocMethod Missing a Javadoc comment. 115
 Error design DesignForExtension Class 'State' 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 'State' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 120
 Error javadoc JavadocMethod Missing a Javadoc comment. 120
 Error misc FinalParameters Parameter name should be final. 121
 Error coding HiddenField 'name' hides a field. 121
 Error misc FinalParameters Parameter value should be final. 121
 Error design DesignForExtension Class 'State' 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 'State' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 125
 Error javadoc JavadocMethod Missing a Javadoc comment. 125
 Error misc FinalParameters Parameter name should be final. 125
 Error coding HiddenField 'name' hides a field. 125
 Error misc FinalParameters Parameter value should be final. 125
 Error design DesignForExtension Class 'State' 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 'State' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 130
 Error sizes LineLength Line is longer than 80 characters (found 128). 132
 Error design DesignForExtension Class 'State' 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 'State' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 135
 Error misc FinalParameters Parameter other should be final. 136
 Error coding SimplifyBooleanExpression Expression can be simplified. 140
 Error sizes LineLength Line is longer than 80 characters (found 190). 144

org/apache/streams/moreover/Topics.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter name should be final. 48
 Error coding HiddenField 'name' hides a field. 48
 Error design DesignForExtension Class 'Topics' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Topics' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter name should be final. 52
 Error coding HiddenField 'name' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter group should be final. 73
 Error coding HiddenField 'group' hides a field. 73
 Error design DesignForExtension Class 'Topics' looks like designed for extension (can be subclassed), but the method 'withGroup' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Topics' final or making the method 'withGroup' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter group should be final. 77
 Error coding HiddenField 'group' hides a field. 77
 Error design DesignForExtension Class 'Topics' 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 'Topics' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Topics' 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 'Topics' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Topics' 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 'Topics' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Topics' 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 'Topics' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Topics' 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 'Topics' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 106). 104
 Error design DesignForExtension Class 'Topics' 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 'Topics' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 149). 116

org/apache/streams/moreover/Video.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter url should be final. 48
 Error coding HiddenField 'url' hides a field. 48
 Error design DesignForExtension Class 'Video' looks like designed for extension (can be subclassed), but the method 'withUrl' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Video' final or making the method 'withUrl' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter url should be final. 52
 Error coding HiddenField 'url' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter mimeType should be final. 73
 Error coding HiddenField 'mimeType' hides a field. 73
 Error design DesignForExtension Class 'Video' looks like designed for extension (can be subclassed), but the method 'withMimeType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Video' final or making the method 'withMimeType' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter mimeType should be final. 77
 Error coding HiddenField 'mimeType' hides a field. 77
 Error design DesignForExtension Class 'Video' 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 'Video' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Video' 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 'Video' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Video' 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 'Video' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Video' 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 'Video' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Video' 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 'Video' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 108). 104
 Error design DesignForExtension Class 'Video' 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 'Video' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 153). 116