Checkstyle Results

The following document contains the results of Checkstyle 12.1.0 with checkstyle.xml ruleset.

Summary

Files  Info  Warnings  Errors
9 0 247 0

Files

File  I  W  E
jmockit/loginExample/domain/userAccount/UserAccount.java 0 37 0
jmockit/loginExample/domain/userAccount/package-info.java 0 1 0
jmockit/loginExample/domain/userLogin/AccountLoginLimitReachedException.java 0 3 0
jmockit/loginExample/domain/userLogin/LoginService.java 0 46 0
jmockit/loginExample/domain/userLogin/LoginServiceIntegrationTest.java 0 56 0
jmockit/loginExample/domain/userLogin/LoginServiceNGTest.java 0 97 0
jmockit/loginExample/domain/userLogin/UserAccountNotFoundException.java 0 3 0
jmockit/loginExample/domain/userLogin/UserAccountRevokedException.java 0 3 0
jmockit/loginExample/domain/userLogin/package-info.java 0 1 0

Rules

Category Rule Violations Severity
imports CustomImportOrder
  • separateLineBetweenGroups: "true"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
  • tokens: "IMPORT, STATIC_IMPORT, PACKAGE_DEF"
9  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "2"
  • caseIndent: "2"
  • basicOffset: "2"
  • braceAdjustment: "2"
  • lineWrappingIndentation: "4"
219  Warning
javadoc MissingJavadocMethod
  • allowMissingPropertyJavadoc: "true"
  • scope: "protected"
  • tokens: "METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, COMPACT_CTOR_DEF"
  • allowedAnnotations: "Override, Test"
4  Warning
MissingJavadocType
  • scope: "protected"
  • excludeScope: "nothing"
  • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, RECORD_DEF, ANNOTATION_DEF"
5  Warning
naming AbbreviationAsWordInName
  • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, ANNOTATION_DEF, ANNOTATION_FIELD_DEF, PARAMETER_DEF, VARIABLE_DEF, METHOD_DEF, PATTERN_VARIABLE_DEF, RECORD_DEF, RECORD_COMPONENT_DEF"
  • ignoreFinal: "false"
  • allowedAbbreviations: "XML,URL"
  • allowedAbbreviationLength: "0"
1  Warning
PackageName
  • format: "^[a-z]+(\.[a-z][a-z0-9]*)*$"
9  Warning

Details

jmockit/loginExample/domain/userAccount/UserAccount.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userAccount' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 10
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 11
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 12
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 13
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 14
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 16
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 17
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 18
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 26
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 49
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 51

jmockit/loginExample/domain/userAccount/package-info.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userAccount' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6

jmockit/loginExample/domain/userLogin/AccountLoginLimitReachedException.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 8
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 10

jmockit/loginExample/domain/userLogin/LoginService.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning imports CustomImportOrder Extra separation in import group before 'org.checkerframework.checker.index.qual.NonNegative' 11
 Warning imports CustomImportOrder Extra separation in import group before 'jmockit.loginExample.domain.userAccount.UserAccount' 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'jmockit.loginExample.domain.userAccount.UserAccount' import. Should be before 'org.checkerframework.checker.index.qual.NonNegative'. 13
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 16
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 18
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning javadoc MissingJavadocMethod Missing a Javadoc comment. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 30
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 36
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 43
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 47
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 56
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 57
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 59
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 61
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 63
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 64
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 65
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 67
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 68
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 70

jmockit/loginExample/domain/userLogin/LoginServiceIntegrationTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning imports CustomImportOrder Extra separation in import group before 'org.testng.annotations.BeforeMethod' 16
 Warning imports CustomImportOrder Extra separation in import group before 'jmockit.loginExample.domain.userAccount.UserAccount' 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'jmockit.loginExample.domain.userAccount.UserAccount' import. Should be before 'org.testng.annotations.Test'. 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'member def type' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 49
 Warning indentation Indentation 'method def' child has incorrect indentation level 16, expected level should be one of the following: 8, 10, 12. 51
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 52
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 107
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 117
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 119
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 126
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 128
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 129
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 131
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 141
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 143

jmockit/loginExample/domain/userLogin/LoginServiceNGTest.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning imports CustomImportOrder Extra separation in import group before 'org.testng.annotations.Test' 15
 Warning imports CustomImportOrder Extra separation in import group before 'jmockit.loginExample.domain.userAccount.UserAccount' 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'jmockit.loginExample.domain.userAccount.UserAccount' import. Should be before 'org.testng.annotations.Test'. 17
 Warning naming AbbreviationAsWordInName Abbreviation in name 'LoginServiceNGTest' must contain no more than '1' consecutive capital letters. 23
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 48
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 49
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 50
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 62
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 63
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 64
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 65
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 80
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 84
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 85
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 86
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 105
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 106
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 107
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 108
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 118
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 121
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 122
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 123
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 124
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 127
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 128
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 129
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 132
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 133
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 134
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 135
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 137
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 142
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 144
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 147
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 148
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 149
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 150
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 153
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 154
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 156
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 161
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 164
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 165
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 166
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 167
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 170
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 171
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 173
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 178
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 180
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 182
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 183
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 184
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 185
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 186
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'block' child has incorrect indentation level 12, expected level should be 10. 190
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 192
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 200
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 202
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 205
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 206
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 207
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'block lcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 210
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 211
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be one of the following: 8, 14. 212
 Warning indentation Indentation 'block rcurly' has incorrect indentation level 12, expected level should be one of the following: 6, 8, 10. 213
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 215

jmockit/loginExample/domain/userLogin/UserAccountNotFoundException.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 8
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 10

jmockit/loginExample/domain/userLogin/UserAccountRevokedException.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6
 Warning javadoc MissingJavadocType Missing a Javadoc comment. 8
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 10

jmockit/loginExample/domain/userLogin/package-info.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'jmockit.loginExample.domain.userLogin' must match pattern '^[a-z]+(\.[a-z][a-z0-9]*)*$'. 6