Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
41 0 269 0

Files

File  I  W  E
org/opendaylight/mdsal/dom/spi/AbstractDOMDataTreeChangeListenerRegistration.java 0 3 0
org/opendaylight/mdsal/dom/spi/AbstractDOMRpcImplementationRegistration.java 0 3 0
org/opendaylight/mdsal/dom/spi/AbstractDOMRpcProviderService.java 0 4 0
org/opendaylight/mdsal/dom/spi/AbstractRegistrationTree.java 0 4 0
org/opendaylight/mdsal/dom/spi/DOMDataTreePrefixTable.java 0 15 0
org/opendaylight/mdsal/dom/spi/DOMDataTreePrefixTableEntry.java 0 6 0
org/opendaylight/mdsal/dom/spi/DOMNotificationSubscriptionListener.java 0 5 0
org/opendaylight/mdsal/dom/spi/DOMNotificationSubscriptionListenerRegistry.java 0 2 0
org/opendaylight/mdsal/dom/spi/DefaultDOMRpcResult.java 0 12 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMDataBroker.java 0 6 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMDataReadOnlyTransaction.java 0 7 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMDataWriteTransaction.java 0 8 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMNotificationPublishService.java 0 6 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMNotificationService.java 0 4 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcImplementation.java 0 6 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcProviderService.java 0 8 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcResult.java 0 6 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcService.java 0 6 0
org/opendaylight/mdsal/dom/spi/ForwardingDOMTransactionChain.java 0 5 0
org/opendaylight/mdsal/dom/spi/RegistrationTreeNode.java 0 11 0
org/opendaylight/mdsal/dom/spi/RegistrationTreeSnapshot.java 0 5 0
org/opendaylight/mdsal/dom/spi/RpcRoutingStrategy.java 0 6 0
org/opendaylight/mdsal/dom/spi/SimpleDOMMountPoint.java 0 5 0
org/opendaylight/mdsal/dom/spi/store/AbstractDOMStoreTransaction.java 0 6 0
org/opendaylight/mdsal/dom/spi/store/AbstractDOMStoreTreeChangePublisher.java 0 22 0
org/opendaylight/mdsal/dom/spi/store/AbstractSnapshotBackedTransactionChain.java 0 17 0
org/opendaylight/mdsal/dom/spi/store/DOMStore.java 0 6 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreReadTransaction.java 0 5 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreReadWriteTransaction.java 0 2 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreThreePhaseCommitCohort.java 0 3 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreTransaction.java 0 4 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreTransactionChain.java 0 7 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreTransactionFactory.java 0 4 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreTreeChangePublisher.java 0 9 0
org/opendaylight/mdsal/dom/spi/store/DOMStoreWriteTransaction.java 0 8 0
org/opendaylight/mdsal/dom/spi/store/ForwardingDOMStoreThreePhaseCommitCohort.java 0 3 0
org/opendaylight/mdsal/dom/spi/store/SnapshotBackedReadTransaction.java 0 5 0
org/opendaylight/mdsal/dom/spi/store/SnapshotBackedReadWriteTransaction.java 0 4 0
org/opendaylight/mdsal/dom/spi/store/SnapshotBackedTransactions.java 0 4 0
org/opendaylight/mdsal/dom/spi/store/SnapshotBackedWriteTransaction.java 0 17 0

Rules

Category Rule Violations Severity
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
79  Warning
javadoc JavadocMethod
  • allowMissingParamTags: "true"
  • allowedAnnotations: "Override, Test"
  • allowThrowsTagsForSubclasses: "true"
  • scope: "public"
  • allowMissingReturnTag: "true"
  • minLineCount: "2"
  • allowMissingThrowsTags: "true"
2  Warning
JavadocParagraph 36  Warning
JavadocTagContinuationIndentation 3  Warning
NonEmptyAtclauseDescription 3  Warning
modifier ModifierOrder 13  Warning
naming AbbreviationAsWordInName
  • allowedAbbreviationLength: "1"
  • ignoreFinal: "false"
31  Warning
LocalVariableName
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
  • 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://"
59  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
40  Warning

Details

org/opendaylight/mdsal/dom/spi/AbstractDOMDataTreeChangeListenerRegistration.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. 20
 Warning sizes LineLength Line is longer than 120 characters (found 146). 20

org/opendaylight/mdsal/dom/spi/AbstractDOMRpcImplementationRegistration.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. 18
 Warning sizes LineLength Line is longer than 120 characters (found 181). 18

org/opendaylight/mdsal/dom/spi/AbstractDOMRpcProviderService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ImmutableSet' import. 15
 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 170). 22

org/opendaylight/mdsal/dom/spi/AbstractRegistrationTree.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 'org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument'should be separated from previous import group. 13
 Warning sizes LineLength Line is longer than 120 characters (found 121). 77

org/opendaylight/mdsal/dom/spi/DOMDataTreePrefixTable.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 javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 23
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 31
 Warning sizes LineLength Line is longer than 120 characters (found 126). 34
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 45
 Warning modifier ModifierOrder '@Nullable' annotation modifier does not preceed non-annotation modifiers. 52
 Warning javadoc SummaryJavadoc First sentence should be present. 61
 Warning naming LocalVariableName Local variable name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 69
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 80
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 84

org/opendaylight/mdsal/dom/spi/DOMDataTreePrefixTableEntry.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 imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 24

org/opendaylight/mdsal/dom/spi/DOMNotificationSubscriptionListener.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. 22
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 28

org/opendaylight/mdsal/dom/spi/DOMNotificationSubscriptionListenerRegistry.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. 19

org/opendaylight/mdsal/dom/spi/DefaultDOMRpcResult.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.annotations.Beta' import. 12
 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 imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 28
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 53
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 58
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 63

org/opendaylight/mdsal/dom/spi/ForwardingDOMDataBroker.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 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 naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 26
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 29

org/opendaylight/mdsal/dom/spi/ForwardingDOMDataReadOnlyTransaction.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. 14
 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. 25
 Warning sizes LineLength Line is longer than 120 characters (found 123). 25
 Warning sizes LineLength Line is longer than 120 characters (found 153). 31
 Warning sizes LineLength Line is longer than 120 characters (found 132). 36

org/opendaylight/mdsal/dom/spi/ForwardingDOMDataWriteTransaction.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 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 121). 24
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 26
 Warning sizes LineLength Line is longer than 120 characters (found 123). 34
 Warning sizes LineLength Line is longer than 120 characters (found 125). 39

org/opendaylight/mdsal/dom/spi/ForwardingDOMNotificationPublishService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 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 129). 21
 Warning sizes LineLength Line is longer than 120 characters (found 127). 26

org/opendaylight/mdsal/dom/spi/ForwardingDOMNotificationService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 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. 22

org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcImplementation.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 15
 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. 24
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 26
 Warning sizes LineLength Line is longer than 120 characters (found 130). 29

org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcProviderService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 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 naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 23
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 25
 Warning sizes LineLength Line is longer than 120 characters (found 164). 28
 Warning sizes LineLength Line is longer than 120 characters (found 166). 33

org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcResult.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 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. 22
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 24

org/opendaylight/mdsal/dom/spi/ForwardingDOMRpcService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 15
 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. 25
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 27
 Warning sizes LineLength Line is longer than 120 characters (found 124). 30

org/opendaylight/mdsal/dom/spi/ForwardingDOMTransactionChain.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ForwardingObject' import. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 21
 Warning modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 23

org/opendaylight/mdsal/dom/spi/RegistrationTreeNode.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. 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 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 modifier ModifierOrder '@Nonnull' annotation modifier does not preceed non-annotation modifiers. 73

org/opendaylight/mdsal/dom/spi/RegistrationTreeSnapshot.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. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning sizes LineLength Line is longer than 120 characters (found 173). 21

org/opendaylight/mdsal/dom/spi/RpcRoutingStrategy.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning sizes LineLength Line is longer than 120 characters (found 129). 21
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 35
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 44
 Warning javadoc JavadocMethod Missing a Javadoc comment. 60
 Warning javadoc JavadocMethod Missing a Javadoc comment. 73

org/opendaylight/mdsal/dom/spi/SimpleDOMMountPoint.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. 16
 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 165). 26
 Warning whitespace EmptyLineSeparator 'CTOR_DEF' should be separated from previous statement. 29
 Warning sizes LineLength Line is longer than 120 characters (found 146). 29

org/opendaylight/mdsal/dom/spi/store/AbstractDOMStoreTransaction.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. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 19
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 22
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 28

org/opendaylight/mdsal/dom/spi/store/AbstractDOMStoreTreeChangePublisher.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.mdsal.dom.api.DOMDataTreeChangeListener' import. 15
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.ImmutableList' import. 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 imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.data.api.schema.tree.DataTreeCandidate' import. 22
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 31
 Warning sizes LineLength Line is longer than 120 characters (found 181). 31
 Warning sizes LineLength Line is longer than 120 characters (found 124). 35
 Warning sizes LineLength Line is longer than 120 characters (found 204). 42
 Warning sizes LineLength Line is longer than 120 characters (found 151). 46
 Warning sizes LineLength Line is longer than 120 characters (found 122). 66
 Warning sizes LineLength Line is longer than 120 characters (found 187). 73
 Warning sizes LineLength Line is longer than 120 characters (found 135). 77
 Warning sizes LineLength Line is longer than 120 characters (found 137). 78
 Warning sizes LineLength Line is longer than 120 characters (found 201). 94
 Warning sizes LineLength Line is longer than 120 characters (found 126). 98
 Warning sizes LineLength Line is longer than 120 characters (found 123). 103
 Warning sizes LineLength Line is longer than 120 characters (found 188). 111
 Warning sizes LineLength Line is longer than 120 characters (found 153). 124
 Warning sizes LineLength Line is longer than 120 characters (found 153). 129

org/opendaylight/mdsal/dom/spi/store/AbstractSnapshotBackedTransactionChain.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.annotations.Beta' import. 12
 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 sizes LineLength Line is longer than 120 characters (found 121). 23
 Warning sizes LineLength Line is longer than 120 characters (found 138). 29
 Warning modifier ModifierOrder 'abstract' modifier out of order with the JLS suggestions. 30
 Warning sizes LineLength Line is longer than 120 characters (found 123). 72
 Warning sizes LineLength Line is longer than 120 characters (found 126). 78
 Warning sizes LineLength Line is longer than 120 characters (found 123). 143
 Warning sizes LineLength Line is longer than 120 characters (found 123). 174
 Warning sizes LineLength Line is longer than 120 characters (found 146). 182
 Warning sizes LineLength Line is longer than 120 characters (found 136). 188
 Warning sizes LineLength Line is longer than 120 characters (found 130). 237
 Warning sizes LineLength Line is longer than 120 characters (found 122). 247
 Warning sizes LineLength Line is longer than 120 characters (found 161). 280

org/opendaylight/mdsal/dom/spi/store/DOMStore.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 18
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 25
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 28
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 30
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 34

org/opendaylight/mdsal/dom/spi/store/DOMStoreReadTransaction.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. 14
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 17
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 40
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 41

org/opendaylight/mdsal/dom/spi/store/DOMStoreReadWriteTransaction.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. 13

org/opendaylight/mdsal/dom/spi/store/DOMStoreThreePhaseCommitCohort.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. 19
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 37

org/opendaylight/mdsal/dom/spi/store/DOMStoreTransaction.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 14
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 19
 Warning javadoc SummaryJavadoc First sentence should be present. 20

org/opendaylight/mdsal/dom/spi/store/DOMStoreTransactionChain.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. 16
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 21
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 25
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 41
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 45
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 73

org/opendaylight/mdsal/dom/spi/store/DOMStoreTransactionFactory.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. 28
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 31
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 37

org/opendaylight/mdsal/dom/spi/store/DOMStoreTreeChangePublisher.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 javadoc JavadocParagraph <p> tag should be precede with empty line. 25
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 28
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 29
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 33
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 42
 Warning sizes LineLength Line is longer than 120 characters (found 163). 56

org/opendaylight/mdsal/dom/spi/store/DOMStoreWriteTransaction.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. 13
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 18
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 23
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 34
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 38
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 47
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 59

org/opendaylight/mdsal/dom/spi/store/ForwardingDOMStoreThreePhaseCommitCohort.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. 19
 Warning sizes LineLength Line is longer than 120 characters (found 131). 19

org/opendaylight/mdsal/dom/spi/store/SnapshotBackedReadTransaction.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.annotations.Beta' import. 14
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 26
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 28
 Warning sizes LineLength Line is longer than 120 characters (found 127). 35

org/opendaylight/mdsal/dom/spi/store/SnapshotBackedReadWriteTransaction.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.mdsal.common.api.ReadFailedException' import. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.annotations.Beta' import. 15
 Warning sizes LineLength Line is longer than 120 characters (found 140). 32

org/opendaylight/mdsal/dom/spi/store/SnapshotBackedTransactions.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.annotations.Beta' import. 12
 Warning sizes LineLength Line is longer than 120 characters (found 149). 31
 Warning sizes LineLength Line is longer than 120 characters (found 124). 43

org/opendaylight/mdsal/dom/spi/store/SnapshotBackedWriteTransaction.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 'THIRD_PARTY_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 16
 Warning imports CustomImportOrder 'java.util.concurrent.atomic.AtomicReferenceFieldUpdater'should be separated from previous import group. 17
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier'should be separated from previous import group. 18
 Warning sizes LineLength Line is longer than 120 characters (found 123). 33
 Warning sizes LineLength Line is longer than 120 characters (found 127). 36
 Warning sizes LineLength Line is longer than 120 characters (found 135). 37
 Warning sizes LineLength Line is longer than 120 characters (found 121). 39
 Warning sizes LineLength Line is longer than 120 characters (found 132). 40
 Warning sizes LineLength Line is longer than 120 characters (found 126). 127
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 164
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 182
 Warning sizes LineLength Line is longer than 120 characters (found 140). 191