Checkstyle Results

The following document contains the results of Checkstyle 6.16 with odl_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
36 0 307 0

Rules

Category Rule Violations Severity
coding FallThrough 1  Warning
IllegalCatch 3  Warning
MissingSwitchDefault 2  Warning
VariableDeclarationUsageDistance 4  Warning
imports CustomImportOrder
  • thirdPartyPackageRegExp: ".*"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
24  Warning
UnusedImports 1  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
180  Warning
javadoc JavadocParagraph
  • allowNewlineParagraph: "false"
25  Warning
JavadocStyle
  • tokens: "ANNOTATION_DEF, ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, METHOD_DEF, VARIABLE_DEF"
  • checkEmptyJavadoc: "true"
8  Warning
NonEmptyAtclauseDescription 7  Warning
modifier RedundantModifier 1  Warning
naming LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
2  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
22  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
  • tokens: "IMPORT, CLASS_DEF, INTERFACE_DEF, ENUM_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"
1  Warning
GenericWhitespace 1  Warning
ParenPad 1  Warning
SeparatorWrap
  • tokens: "COMMA"
  • option: "EOL"
2  Warning
SeparatorWrap
  • tokens: "DOT"
  • option: "nl"
2  Warning
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
15  Warning

Details

org/opendaylight/yangtools/yang/data/codec/gson/AnyXmlSupportTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. Should be before 'java.net.URISyntaxException'. 27
 Warning imports UnusedImports Unused import - com.google.common.base.Optional. 27
 Warning sizes LineLength Line is longer than 120 characters (found 121). 159

org/opendaylight/yangtools/yang/data/codec/gson/Bug4969Test.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'com.google.common.base.Optional' should be separated from previous import group. 13
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ref4' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 62
 Warning coding VariableDeclarationUsageDistance Distance between variable 'value4' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 73
 Warning coding VariableDeclarationUsageDistance Distance between variable 'set4' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 83

org/opendaylight/yangtools/yang/data/codec/gson/JSONCodec.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 15

org/opendaylight/yangtools/yang/data/codec/gson/JSONCodecFactory.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 54
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 131
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 136
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 168
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 184
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 199

org/opendaylight/yangtools/yang/data/codec/gson/JSONNormalizedNodeStreamWriter.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'org.opendaylight.yangtools.yang.data.codec.gson.JsonParserStream.ANYXML_ARRAY_ELEMENT_ID' is in the wrong order. Should be in the 'STATIC' group, expecting not assigned imports on this line. 34
 Warning imports CustomImportOrder Import statement for 'org.w3c.dom.Node.ELEMENT_NODE' is in the wrong order. Should be in the 'STATIC' group, expecting not assigned imports on this line. 35
 Warning imports CustomImportOrder Import statement for 'org.w3c.dom.Node.TEXT_NODE' is in the wrong order. Should be in the 'STATIC' group, expecting not assigned imports on this line. 36
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 40
 Warning sizes LineLength Line is longer than 120 characters (found 180). 64
 Warning naming ParameterName Parameter name 'JsonWriter' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 64
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 73
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 75
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 78
 Warning sizes LineLength Line is longer than 120 characters (found 178). 88
 Warning sizes LineLength Line is longer than 120 characters (found 135). 89
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 94
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 96
 Warning sizes LineLength Line is longer than 120 characters (found 175). 108
 Warning sizes LineLength Line is longer than 120 characters (found 132). 109
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 233

org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterContext.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 132). 57
 Warning sizes LineLength Line is longer than 120 characters (found 139). 83
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 99
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 108

org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterNamedObjectContext.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 137). 22

org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterObjectContext.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 132). 22

org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterQNameContext.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 126). 24

org/opendaylight/yangtools/yang/data/codec/gson/JsonParserStream.java

Severity Category Rule Message Line
 Warning whitespace ParenPad ')' is preceded with whitespace. 78
 Warning coding MissingSwitchDefault switch without "default" clause. 123
 Warning coding FallThrough Fall through from previous branch of the switch statement. 155
 Warning coding MissingSwitchDefault switch without "default" clause. 176
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 177
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 178
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 179
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 180
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 181
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 182
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 183
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 184
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 185
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 186
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 187
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 188
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 189
 Warning indentation Indentation 'while' have incorrect indentation level 12, expected level should be 16. 190
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 191
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 192
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 193
 Warning indentation Indentation 'else' child have incorrect indentation level 20, expected level should be 24. 194
 Warning indentation Indentation 'else' child have incorrect indentation level 20, expected level should be 24. 195
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 16, expected level should be 20. 196
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 12, expected level should be 16. 197
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 198
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 199
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 200
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 201
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 202
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 210
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 211
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 212
 Warning indentation Indentation 'while' have incorrect indentation level 12, expected level should be 16. 213
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 214
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 215
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 216
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 217
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 218
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 219
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 220
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 221
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 222
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 223
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 224
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 225
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 227
 Warning sizes LineLength Line is longer than 120 characters (found 123). 228
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 229
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 230
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 232
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 234
 Warning sizes LineLength Line is longer than 120 characters (found 130). 234
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 235
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 236
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 237
 Warning indentation Indentation 'else' child have incorrect indentation level 20, expected level should be 24. 238
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 16, expected level should be 20. 239
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 240
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 12, expected level should be 16. 241
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 242
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 243
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 244
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 245
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 246
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 247
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 248
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 263
 Warning sizes LineLength Line is longer than 120 characters (found 138). 316
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 316
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 316
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 316
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 316
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 316
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 316
 Warning sizes LineLength Line is longer than 120 characters (found 140). 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 318
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 318
 Warning modifier RedundantModifier Redundant 'public' modifier. 366

org/opendaylight/yangtools/yang/data/codec/gson/JsonStreamToNormalizedNodeTest.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 39
 Warning javadoc JavadocStyle First sentence should end with a period. 39
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 40
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 89
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 101
 Warning javadoc JavadocStyle First sentence should end with a period. 101
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 104
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 105
 Warning sizes LineLength Line is longer than 120 characters (found 122). 109
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 114
 Warning javadoc JavadocStyle First sentence should end with a period. 114
 Warning sizes LineLength Line is longer than 120 characters (found 121). 127
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 132
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 143
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 145
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 176
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 178
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 3, expected level should be 4. 219

org/opendaylight/yangtools/yang/data/codec/gson/JsonWriterFactory.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 15
 Warning javadoc JavadocStyle First sentence should end with a period. 15

org/opendaylight/yangtools/yang/data/codec/gson/NormalizedNodeToJsonStreamTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'com.google.common.collect.Sets' should be separated from previous import group. 17
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 71
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 72
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 74
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 75
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 76
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 77
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 78
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 89
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 90
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 91
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 92
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 94
 Warning indentation Indentation 'for' have incorrect indentation level 12, expected level should be 16. 95
 Warning indentation Indentation 'for' child have incorrect indentation level 16, expected level should be 20. 96
 Warning indentation Indentation 'for' child have incorrect indentation level 16, expected level should be 20. 97
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 12, expected level should be 16. 98
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 100
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 102
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 113
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 114
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 116
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 117
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 118
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 119
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 120
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 131
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 132
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 133
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 134
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 136
 Warning indentation Indentation 'for' have incorrect indentation level 12, expected level should be 16. 137
 Warning indentation Indentation 'for' child have incorrect indentation level 16, expected level should be 20. 138
 Warning indentation Indentation 'for' child have incorrect indentation level 16, expected level should be 20. 139
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 12, expected level should be 16. 140
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 142
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 143
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 153
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 154
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 155
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 156
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 158
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 159
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 160
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 161
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 162
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 163
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 165
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 166
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 167
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 168
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 169
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 170
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 171
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 172
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 174
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 175
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 176
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 177
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 178
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 188
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 189
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 190
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 191
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 193
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 194
 Warning javadoc JavadocStyle First sentence should end with a period. 197
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 200
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 202
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 216
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 217
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 219
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 220
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 221
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 222
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 223
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 224
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 225
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 226
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 228
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 229
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 230
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 231
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 233
 Warning javadoc JavadocStyle First sentence should end with a period. 236
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 239
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 241
 Warning sizes LineLength Line is longer than 120 characters (found 123). 250
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 255
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 256
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 258
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 259
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 260
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 261
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 262
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 263
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 264
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 265
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 266
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 267
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 269
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 270
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 271
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 272
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 273
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 275
 Warning javadoc JavadocStyle First sentence should end with a period. 278
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 280
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 282
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 295
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 296
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 298
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 299
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 300
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 301
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 311
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 312
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 314
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 315
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 317
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 318
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 319
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 320
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 322
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 323
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 324
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 325
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 327
 Warning indentation Indentation 'block rcurly' have incorrect indentation level 8, expected level should be 12. 329
 Warning whitespace SeparatorWrap '.' should be on a new line. 351

org/opendaylight/yangtools/yang/data/codec/gson/NumberJSONCodec.java

Severity Category Rule Message Line
 Warning whitespace GenericWhitespace GenericWhitespace '>' is preceded with whitespace. 19

org/opendaylight/yangtools/yang/data/codec/gson/StreamToNormalizedNodeTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.gson.stream.JsonReader' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.File' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 15
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.IOException' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.StringReader' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.StringWriter' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 18
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.URISyntaxException' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.junit.BeforeClass' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 20
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.junit.Ignore' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 21
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.junit.Test' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 22
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 23
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 24
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 25
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.stream.LoggingNormalizedNodeStreamWriter' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 26
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeWriter' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 28
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNormalizedNodeStreamWriter' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 29
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.impl.schema.NormalizedNodeResult' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.model.api.SchemaContext' import. Should be before 'org.opendaylight.yangtools.yang.model.api.SchemaPath'. 31
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 52
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 73
 Warning sizes LineLength Line is longer than 120 characters (found 132). 100
 Warning whitespace SeparatorWrap '.' should be on a new line. 108

org/opendaylight/yangtools/yang/data/codec/gson/TestingNormalizedNodeStructuresCreator.java

Severity Category Rule Message Line
 Warning naming LocalVariableName Local variable name 'choc11_c11AugmentBuilder' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 128
 Warning naming LocalVariableName Local variable name 'choc11_c11AugmentBuilder' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 144
 Warning coding VariableDeclarationUsageDistance Distance between variable 'lst11' declaration and its first usage is 8, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 179
 Warning sizes LineLength Line is longer than 120 characters (found 136). 237
 Warning sizes LineLength Line is longer than 120 characters (found 138). 242
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 257
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 273
 Warning javadoc JavadocStyle First sentence should end with a period. 273
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 276
 Warning sizes LineLength Line is longer than 120 characters (found 137). 283

org/opendaylight/yangtools/yang/data/codec/gson/UnionJSONCodec.java

Severity Category Rule Message Line
 Warning coding IllegalCatch Catching 'RuntimeException' is not allowed. 85
 Warning coding IllegalCatch Catching 'RuntimeException' is not allowed. 109