Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
36 0 292 0

Files

File  I  W  E
org/opendaylight/yangtools/yang/data/codec/gson/AbstractJSONCodec.java 0 3 0
org/opendaylight/yangtools/yang/data/codec/gson/AbstractNodeDataWithSchema.java 0 5 0
org/opendaylight/yangtools/yang/data/codec/gson/AnyXmlNodeDataWithSchema.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/BooleanJSONCodec.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/CaseNodeDataWithSchema.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/ChoiceNodeDataWithSchema.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/CompositeNodeDataWithSchema.java 0 13 0
org/opendaylight/yangtools/yang/data/codec/gson/ContainerNodeDataWithSchema.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONCodec.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONCodecFactory.java 0 17 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONEmptyCodec.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONNormalizedNodeStreamWriter.java 0 18 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterContext.java 0 10 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterExclusiveRootContext.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterInvisibleContext.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterListContext.java 0 3 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterNamedObjectContext.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterObjectContext.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterQNameContext.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterRootContext.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterSharedRootContext.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStreamWriterURIContext.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStringIdentityrefCodec.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/JSONStringInstanceIdentifierCodec.java 0 6 0
org/opendaylight/yangtools/yang/data/codec/gson/JsonParserStream.java 0 125 0
org/opendaylight/yangtools/yang/data/codec/gson/JsonWriterFactory.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/LeafListEntryNodeDataWithSchema.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/LeafListNodeDataWithSchema.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/LeafNodeDataWithSchema.java 0 2 0
org/opendaylight/yangtools/yang/data/codec/gson/ListEntryNodeDataWithSchema.java 0 11 0
org/opendaylight/yangtools/yang/data/codec/gson/ListNodeDataWithSchema.java 0 3 0
org/opendaylight/yangtools/yang/data/codec/gson/NumberJSONCodec.java 0 5 0
org/opendaylight/yangtools/yang/data/codec/gson/QuotedJSONCodec.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/RpcAsContainer.java 0 4 0
org/opendaylight/yangtools/yang/data/codec/gson/SimpleNodeDataWithSchema.java 0 1 0
org/opendaylight/yangtools/yang/data/codec/gson/YangModeledAnyXmlNodeDataWithSchema.java 0 2 0

Rules

Category Rule Violations Severity
coding MissingSwitchDefault 1  Warning
OverloadMethodsDeclarationOrder 1  Warning
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
64  Warning
indentation Indentation
  • lineWrappingIndentation: "4"
  • caseIndent: "4"
  • arrayInitIndent: "4"
  • throwsIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
97  Warning
javadoc JavadocMethod
  • allowMissingParamTags: "true"
  • allowedAnnotations: "Override, Test"
  • allowThrowsTagsForSubclasses: "true"
  • scope: "public"
  • allowMissingReturnTag: "true"
  • minLineCount: "2"
  • allowMissingThrowsTags: "true"
3  Warning
JavadocParagraph 8  Warning
NonEmptyAtclauseDescription 10  Warning
modifier ModifierOrder 1  Warning
naming AbbreviationAsWordInName
  • allowedAbbreviationLength: "1"
  • ignoreFinal: "false"
21  Warning
LocalVariableName
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  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://"
21  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
36  Warning
GenericWhitespace 1  Warning
OperatorWrap
  • tokens: "BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "
  • option: "NL"
1  Warning
WhitespaceAround
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
  • allowEmptyMethods: "true"
  • allowEmptyConstructors: "true"
20  Warning

Details

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 29
 Warning javadoc SummaryJavadoc First sentence should be present. 36

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter' import. 15
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 31

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 19
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 33

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning whitespace EmptyLineSeparator 'import' should be separated from previous statement. 9

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11
 Warning javadoc SummaryJavadoc First sentence should be present. 16
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 17

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning javadoc SummaryJavadoc First sentence should be present. 37
 Warning sizes LineLength Line is longer than 120 characters (found 125). 40
 Warning sizes LineLength Line is longer than 120 characters (found 141). 130
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '51'. 168
 Warning sizes LineLength Line is longer than 120 characters (found 143). 190
 Warning sizes LineLength Line is longer than 120 characters (found 121). 194

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 14
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 25

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 38
 Warning sizes LineLength Line is longer than 120 characters (found 124). 59
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be one of the following: 16, 20. 65
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 12, expected level should be one of the following: 20, 24. 67
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be one of the following: 20, 24. 67
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be one of the following: 20, 24. 68
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be one of the following: 24, 28. 69
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be one of the following: 20, 24. 70
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be one of the following: 24, 28. 71
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be one of the following: 20, 24. 72
 Warning indentation Indentation 'else' child have incorrect indentation level 16, expected level should be one of the following: 24, 28. 73
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 12, expected level should be one of the following: 20, 24. 74
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be one of the following: 20, 24. 75
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be one of the following: 16, 20. 76
 Warning indentation Indentation 'object def rcurly' have incorrect indentation level 4, expected level should be one of the following: 12, 16. 77

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

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 14

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter' import. 18
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 28
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 32
 Warning sizes LineLength Line is longer than 120 characters (found 180). 44
 Warning naming ParameterName Parameter name 'JsonWriter' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 44
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 53
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 55
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 58
 Warning sizes LineLength Line is longer than 120 characters (found 178). 68
 Warning sizes LineLength Line is longer than 120 characters (found 135). 69
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 74
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 76
 Warning sizes LineLength Line is longer than 120 characters (found 175). 88
 Warning sizes LineLength Line is longer than 120 characters (found 132). 89
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 201

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 24
 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 modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 92
 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/JSONStreamWriterExclusiveRootContext.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 15

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 17

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 20

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 21
 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 whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 21
 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 whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 20
 Warning sizes LineLength Line is longer than 120 characters (found 126). 23

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 17

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 14

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 20

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 21

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 22
 Warning sizes LineLength Line is longer than 120 characters (found 144). 22
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 58

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 21
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 23
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 24
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 26
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 27
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 28
 Warning javadoc JavadocMethod Missing a Javadoc comment. 64
 Warning javadoc JavadocMethod Missing a Javadoc comment. 77
 Warning javadoc JavadocMethod Missing a Javadoc comment. 121
 Warning coding MissingSwitchDefault switch without "default" clause. 122
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 123
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 124
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 125
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 125
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 126
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 127
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 128
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 128
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 129
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 130
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 131
 Warning indentation Indentation 'method call' 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 'method call' 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 'case' child have incorrect indentation level 8, expected level should be 12. 134
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 135
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 135
 Warning indentation Indentation 'while' have incorrect indentation level 12, expected level should be 16. 136
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 137
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 138
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be 24. 138
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 139
 Warning indentation Indentation 'else' child have incorrect indentation level 20, expected level should be 24. 140
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 20, expected level should be 24. 140
 Warning indentation Indentation 'else' child have incorrect indentation level 20, expected level should be 24. 141
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be 24. 141
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 16, expected level should be 20. 142
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 12, expected level should be 16. 143
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 144
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 144
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 145
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 146
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 147
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 12, expected level should be 16. 147
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 148
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 148
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 156
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 156
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 157
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 158
 Warning indentation Indentation 'while' have incorrect indentation level 12, expected level should be 16. 159
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 16, expected level should be 20. 160
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 160
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be 20. 161
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 161
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 162
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 163
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 164
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 16, expected level should be 20. 165
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 165
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 16, expected level should be 20. 166
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 166
 Warning indentation Indentation 'method call' child have incorrect indentation level 16, expected level should be 20. 167
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 167
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 168
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 169
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 170
 Warning indentation Indentation 'method call' child have incorrect indentation level 16, expected level should be 20. 171
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 171
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 16, expected level should be 20. 173
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 173
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 175
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 176
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 178
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 16, expected level should be 20. 180
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 180
 Warning sizes LineLength Line is longer than 120 characters (found 130). 180
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 20. 186
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 24. 187
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be 24. 187
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 20. 188
 Warning indentation Indentation 'else' child have incorrect indentation level 20, expected level should be 24. 189
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be 24. 189
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 16, expected level should be 20. 190
 Warning indentation Indentation 'method call' child have incorrect indentation level 16, expected level should be 20. 191
 Warning indentation Indentation 'while' child have incorrect indentation level 16, expected level should be 20. 191
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 12, expected level should be 16. 192
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 193
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 193
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 194
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 195
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 196
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 197
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 198
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 199
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 214
 Warning sizes LineLength Line is longer than 120 characters (found 138). 263
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 263
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 263
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 263
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 263
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 263
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 263
 Warning sizes LineLength Line is longer than 120 characters (found 140). 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 265
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 265
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 311
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 312
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 313
 Warning whitespace OperatorWrap '||' should be on a new line. 331
 Warning sizes LineLength Line is longer than 120 characters (found 123). 347

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

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning javadoc SummaryJavadoc First sentence should be present. 15

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter' import. 19
 Warning naming MemberName Member name 'qNameToKeys' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 26
 Warning naming LocalVariableName Local variable name 'qName' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 43
 Warning sizes LineLength Line is longer than 120 characters (found 137). 62

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 27

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 19
 Warning whitespace GenericWhitespace GenericWhitespace '>' is preceded with whitespace. 19
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 33

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 19
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 33

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.common.QName'should be separated from previous import group. 15
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 121
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 124

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.schema.stream.SchemaAwareNormalizedNodeStreamWriter'should be separated from previous import group. 11