Checkstyle Results

The following document contains the results of Checkstylerss feed

Summary

Files Infos Infos Warnings Warnings Errors Errors
58 0 0 292

Files

Files Infos Warnings Errors
org/apache/myfaces/buildtools/maven2/plugin/faces/AbstractFacesMojo.java 0 0 7
org/apache/myfaces/buildtools/maven2/plugin/faces/GenerateComponentsMojo.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/faces/GenerateFacesConfigMojo.java 0 0 5
org/apache/myfaces/buildtools/maven2/plugin/faces/GenerateJspTaglibsMojo.java 0 0 16
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/component/AbstractComponentGenerator.java 0 0 21
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/component/MyFacesComponentGenerator.java 0 0 32
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/component/TrinidadComponentGenerator.java 0 0 9
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractComponentTagGenerator.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractConverterTagGenerator.java 0 0 4
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractTagGenerator.java 0 0 13
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractValidatorTagGenerator.java 0 0 4
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java 0 0 21
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/MyFacesConverterTagGenerator.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/MyFacesValidatorTagGenerator.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/TrinidadComponentTagGenerator.java 0 0 14
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/TrinidadConverterTagGenerator.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/TrinidadValidatorTagGenerator.java 0 0 6
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/AbstractTagBean.java 0 0 7
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/AttributeBean.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/ComponentBean.java 0 0 24
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/FacesConfigBean.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/FacesConfigParser.java 0 0 3
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/PropertyBean.java 0 0 13
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/RendererBean.java 0 0 10
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/ValidatorBean.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/faces/parse/converters/QNameConverter.java 0 0 2
org/apache/myfaces/buildtools/maven2/plugin/faces/util/CompoundIterator.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/faces/util/FilteredIterator.java 0 0 1
org/apache/myfaces/buildtools/maven2/plugin/faces/util/SourceTemplate.java 0 0 12
org/apache/myfaces/buildtools/maven2/plugin/faces/util/Util.java 0 0 41
org/apache/myfaces/buildtools/maven2/plugin/faces/util/XIncludeFilter.java 0 0 4
org/apache/myfaces/buildtools/maven2/plugin/faces/util/XPointerFilter.java 0 0 3

Rules

Rules Violations Severity
ConstantName
  • format : "^_?((log)|([a-z][a-zA-Z]*ThreadLocal)|([A-Z][A-Z0-9]*(_[A-Z0-9]+)*))$"
0 Errors Error
LocalVariableName 1 Errors Error
MethodName
  • format : "^_?[a-z][a-zA-Z0-9]*$"
0 Errors Error
PackageName 0 Errors Error
LocalFinalVariableName 0 Errors Error
ParameterName 11 Errors Error
StaticVariableName 1 Errors Error
TypeName
  • format : "^_?[A-Z][a-zA-Z0-9]*$"
0 Errors Error
Header
  • headerFile : "/home/simon/apache/myfaces/myfaces-build-tools/maven2-plugins/myfaces-faces-plugin/target/checkstyle-header.txt"
0 Errors Error
AvoidStarImport 9 Errors Error
IllegalImport 0 Errors Error
RedundantImport 1 Errors Error
UnusedImports 0 Errors Error
FileLength 0 Errors Error
LineLength
  • max : "120"
  • ignorePattern : "@version|@see"
9 Errors Error
MethodLength
  • max : "200"
0 Errors Error
ParameterNumber
  • max : "10"
0 Errors Error
TabCharacter 0 Errors Error
NeedBraces 148 Errors Error
LeftCurly
  • option : "nl"
93 Errors Error
RightCurly
  • option : "alone"
17 Errors Error
DoubleCheckedLocking 0 Errors Error
EmptyStatement 0 Errors Error
EqualsHashCode 0 Errors Error
InnerAssignment 2 Errors Error
DefaultComesLast 0 Errors Error
MissingSwitchDefault 0 Errors Error
FallThrough 0 Errors Error
MultipleVariableDeclarations 0 Errors Error
UpperEll 0 Errors Error

Details

org/apache/myfaces/buildtools/maven2/plugin/faces/AbstractFacesMojo.java

Violation Message Line
Errors Using the '.*' form of import should be avoided - java.util.*. 57
Errors '{' should be on a new line. 111
Errors '}' should be alone on a line. 113
Errors '{' should be on a new line. 113
Errors 'if' construct must use '{}'s. 188
Errors 'if' construct must use '{}'s. 266
Errors 'if' construct must use '{}'s. 326

org/apache/myfaces/buildtools/maven2/plugin/faces/GenerateComponentsMojo.java

Violation Message Line
Errors '{' should be on a new line. 107
Errors 'if' construct must use '{}'s. 163

org/apache/myfaces/buildtools/maven2/plugin/faces/GenerateFacesConfigMojo.java

Violation Message Line
Errors Using the '.*' form of import should be avoided - javax.xml.parsers.*. 31
Errors Using the '.*' form of import should be avoided - javax.xml.transform.*. 32
Errors Using the '.*' form of import should be avoided - java.io.*. 37
Errors 'if' construct must use '{}'s. 148
Errors 'else' construct must use '{}'s. 150

org/apache/myfaces/buildtools/maven2/plugin/faces/GenerateJspTaglibsMojo.java

Violation Message Line
Errors 'if' construct must use '{}'s. 312
Errors 'if' construct must use '{}'s. 520
Errors 'if' construct must use '{}'s. 548
Errors 'if' construct must use '{}'s. 554
Errors 'else' construct must use '{}'s. 556
Errors 'if' construct must use '{}'s. 608
Errors 'if' construct must use '{}'s. 635
Errors 'if' construct must use '{}'s. 659
Errors 'else' construct must use '{}'s. 661
Errors '{' should be on a new line. 738
Errors Inner assignments should be avoided. 833
Errors '}' should be alone on a line. 856
Errors '{' should be on a new line. 856
Errors '{' should be on a new line. 857
Errors '}' should be alone on a line. 859
Errors '{' should be on a new line. 859

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/component/AbstractComponentGenerator.java

Violation Message Line
Errors Using the '.*' form of import should be avoided - org.apache.myfaces.buildtools.maven2.plugin.faces.parse.*. 24
Errors Using the '.*' form of import should be avoided - java.util.*. 32
Errors 'if' construct must use '{}'s. 105
Errors 'if' construct must use '{}'s. 135
Errors '{' should be on a new line. 138
Errors '{' should be on a new line. 140
Errors 'if' construct must use '{}'s. 145
Errors 'if' construct must use '{}'s. 158
Errors '{' should be on a new line. 198
Errors 'if' construct must use '{}'s. 231
Errors '{' should be on a new line. 234
Errors '{' should be on a new line. 236
Errors 'if' construct must use '{}'s. 242
Errors 'if' construct must use '{}'s. 272
Errors 'if' construct must use '{}'s. 289
Errors 'if' construct must use '{}'s. 295
Errors 'if' construct must use '{}'s. 307
Errors 'if' construct must use '{}'s. 516
Errors '{' should be on a new line. 587
Errors 'if' construct must use '{}'s. 614
Errors 'if' construct must use '{}'s. 640

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/component/MyFacesComponentGenerator.java

Violation Message Line
Errors '{' should be on a new line. 51
Errors '}' should be alone on a line. 53
Errors '{' should be on a new line. 53
Errors '{' should be on a new line. 79
Errors '{' should be on a new line. 85
Errors '}' should be alone on a line. 90
Errors '{' should be on a new line. 90
Errors '{' should be on a new line. 104
Errors 'if' construct must use '{}'s. 107
Errors '{' should be on a new line. 117
Errors 'if' construct must use '{}'s. 123
Errors Line is longer than 120 characters. 154
Errors Line is longer than 120 characters. 237
Errors Line is longer than 120 characters. 258
Errors '{' should be on a new line. 317
Errors Line is longer than 120 characters. 322
Errors Line is longer than 120 characters. 335
Errors Inner assignments should be avoided. 340
Errors Line is longer than 120 characters. 352
Errors '{' should be on a new line. 397
Errors '{' should be on a new line. 435
Errors Line is longer than 120 characters. 436
Errors '{' should be on a new line. 448
Errors '}' should be alone on a line. 450
Errors '{' should be on a new line. 450
Errors '{' should be on a new line. 469
Errors '{' should be on a new line. 515
Errors '}' should be alone on a line. 518
Errors '{' should be on a new line. 518
Errors '{' should be on a new line. 528
Errors '}' should be alone on a line. 531
Errors '{' should be on a new line. 531

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/component/TrinidadComponentGenerator.java

Violation Message Line
Errors Using the '.*' form of import should be avoided - java.util.*. 31
Errors 'if' construct must use '{}'s. 59
Errors 'if' construct must use '{}'s. 127
Errors 'else' construct must use '{}'s. 131
Errors 'if' construct must use '{}'s. 137
Errors 'if' construct must use '{}'s. 250
Errors 'else' construct must use '{}'s. 252
Errors 'if' construct must use '{}'s. 387
Errors 'if' construct must use '{}'s. 393

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractComponentTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 249
Errors 'if' construct must use '{}'s. 265
Errors 'else' construct must use '{}'s. 267

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractConverterTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 36
Errors '{' should be on a new line. 37
Errors '{' should be on a new line. 126
Errors '{' should be on a new line. 175

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 37
Errors '{' should be on a new line. 45
Errors '{' should be on a new line. 58
Errors '{' should be on a new line. 62
Errors '{' should be on a new line. 66
Errors '{' should be on a new line. 144
Errors 'if' construct must use '{}'s. 165
Errors 'if' construct must use '{}'s. 168
Errors 'if' construct must use '{}'s. 171
Errors '{' should be on a new line. 176
Errors '{' should be on a new line. 194
Errors '{' should be on a new line. 212
Errors 'if' construct must use '{}'s. 221

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/AbstractValidatorTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 36
Errors '{' should be on a new line. 38
Errors '{' should be on a new line. 86
Errors '{' should be on a new line. 139

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/MyFacesComponentTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 170
Errors '{' should be on a new line. 299
Errors '}' should be alone on a line. 301
Errors '{' should be on a new line. 301
Errors '{' should be on a new line. 303
Errors '{' should be on a new line. 307
Errors '{' should be on a new line. 311
Errors '}' should be alone on a line. 314
Errors '{' should be on a new line. 314
Errors '{' should be on a new line. 354
Errors '}' should be alone on a line. 357
Errors '{' should be on a new line. 357
Errors '{' should be on a new line. 359
Errors '{' should be on a new line. 363
Errors '{' should be on a new line. 367
Errors '}' should be alone on a line. 370
Errors '{' should be on a new line. 370
Errors 'if' construct must use '{}'s. 432
Errors '{' should be on a new line. 459
Errors '}' should be alone on a line. 461
Errors '{' should be on a new line. 461

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/MyFacesConverterTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 30
Errors '{' should be on a new line. 32
Errors '{' should be on a new line. 36

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/MyFacesValidatorTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 30
Errors '{' should be on a new line. 32
Errors '{' should be on a new line. 36

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/TrinidadComponentTagGenerator.java

Violation Message Line
Errors 'if' construct must use '{}'s. 78
Errors 'else' construct must use '{}'s. 80
Errors 'if' construct must use '{}'s. 86
Errors 'else' construct must use '{}'s. 88
Errors 'if' construct must use '{}'s. 94
Errors 'else' construct must use '{}'s. 96
Errors 'if' construct must use '{}'s. 102
Errors 'else' construct must use '{}'s. 104
Errors 'if' construct must use '{}'s. 111
Errors 'else' construct must use '{}'s. 113
Errors 'if' construct must use '{}'s. 510
Errors 'if' construct must use '{}'s. 773
Errors 'if' construct must use '{}'s. 809
Errors 'else' construct must use '{}'s. 811

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/TrinidadConverterTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 30
Errors '{' should be on a new line. 32
Errors '{' should be on a new line. 36

org/apache/myfaces/buildtools/maven2/plugin/faces/generator/taglib/TrinidadValidatorTagGenerator.java

Violation Message Line
Errors '{' should be on a new line. 30
Errors Name '_is12' must match pattern '^[a-z][a-zA-Z0-9]*$'. 32
Errors Name '_licenseHeader' must match pattern '^[a-z][a-zA-Z0-9]*$'. 32
Errors Name '_log' must match pattern '^[a-z][a-zA-Z0-9]*$'. 32
Errors '{' should be on a new line. 32
Errors '{' should be on a new line. 36

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/AbstractTagBean.java

Violation Message Line
Errors '{' should be on a new line. 27
Errors '{' should be on a new line. 35
Errors 'if' construct must use '{}'s. 176
Errors 'if' construct must use '{}'s. 178
Errors 'if' construct must use '{}'s. 180
Errors 'if' construct must use '{}'s. 182
Errors 'if' construct must use '{}'s. 184

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/AttributeBean.java

Violation Message Line
Errors Redundant import from the java.lang package - java.lang.Comparable. 23

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/ComponentBean.java

Violation Message Line
Errors 'if' construct must use '{}'s. 227
Errors 'if' construct must use '{}'s. 458
Errors 'if' construct must use '{}'s. 492
Errors 'if' construct must use '{}'s. 525
Errors 'if' construct must use '{}'s. 571
Errors 'if' construct must use '{}'s. 604
Errors 'if' construct must use '{}'s. 637
Errors 'if' construct must use '{}'s. 713
Errors 'if' construct must use '{}'s. 715
Errors 'if' construct must use '{}'s. 717
Errors 'if' construct must use '{}'s. 719
Errors 'if' construct must use '{}'s. 721
Errors 'if' construct must use '{}'s. 815
Errors 'if' construct must use '{}'s. 841
Errors 'if' construct must use '{}'s. 875
Errors 'if' construct must use '{}'s. 889
Errors 'if' construct must use '{}'s. 904
Errors 'if' construct must use '{}'s. 919
Errors 'if' construct must use '{}'s. 935
Errors 'if' construct must use '{}'s. 952
Errors 'if' construct must use '{}'s. 968
Errors 'if' construct must use '{}'s. 981
Errors 'if' construct must use '{}'s. 1008
Errors 'if' construct must use '{}'s. 1023

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/FacesConfigBean.java

Violation Message Line
Errors 'if' construct must use '{}'s. 41
Errors 'if' construct must use '{}'s. 87
Errors Name '_cur' must match pattern '^[a-z][a-zA-Z0-9]*$'. 302

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/FacesConfigParser.java

Violation Message Line
Errors Line is longer than 120 characters. 237
Errors Line is longer than 120 characters. 241
Errors 'if' construct must use '{}'s. 405

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/PropertyBean.java

Violation Message Line
Errors Name '_useMaxTime' must match pattern '^[a-z][a-zA-Z0-9]*$'. 27
Errors Name 'transient_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 138
Errors Name 'list_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 160
Errors 'if' construct must use '{}'s. 246
Errors 'if' construct must use '{}'s. 270
Errors 'if' construct must use '{}'s. 402
Errors 'if' construct must use '{}'s. 426
Errors Name '_isSetMethod' must match pattern '^[a-z][a-zA-Z0-9]*$'. 432
Errors Name '_isSetMethodScope' must match pattern '^[a-z][a-zA-Z0-9]*$'. 442
Errors Name '_isGetLocalMethod' must match pattern '^[a-z][a-zA-Z0-9]*$'. 452
Errors Name '_isGetLocalMethodScope' must match pattern '^[a-z][a-zA-Z0-9]*$'. 462
Errors Name '_rtexprvalue' must match pattern '^[a-z][a-zA-Z0-9]*$'. 472
Errors Name '_EMPTY_ARRAY' must match pattern '^[a-z][a-zA-Z0-9]*$'. 502

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/RendererBean.java

Violation Message Line
Errors 'if' construct must use '{}'s. 219
Errors 'if' construct must use '{}'s. 239
Errors 'if' construct must use '{}'s. 264
Errors 'if' construct must use '{}'s. 282
Errors 'if' construct must use '{}'s. 307
Errors 'if' construct must use '{}'s. 347
Errors 'if' construct must use '{}'s. 371
Errors 'if' construct must use '{}'s. 389
Errors 'if' construct must use '{}'s. 414
Errors 'if' construct must use '{}'s. 428

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/ValidatorBean.java

Violation Message Line
Errors '{' should be on a new line. 28

org/apache/myfaces/buildtools/maven2/plugin/faces/parse/converters/QNameConverter.java

Violation Message Line
Errors 'if' construct must use '{}'s. 33
Errors 'if' construct must use '{}'s. 36

org/apache/myfaces/buildtools/maven2/plugin/faces/util/CompoundIterator.java

Violation Message Line
Errors 'if' construct must use '{}'s. 52

org/apache/myfaces/buildtools/maven2/plugin/faces/util/FilteredIterator.java

Violation Message Line
Errors 'if' construct must use '{}'s. 42

org/apache/myfaces/buildtools/maven2/plugin/faces/util/SourceTemplate.java

Violation Message Line
Errors Using the '.*' form of import should be avoided - java.io.*. 21
Errors Using the '.*' form of import should be avoided - java.util.*. 22
Errors 'if' construct must use '{}'s. 52
Errors 'if' construct must use '{}'s. 55
Errors 'if' construct must use '{}'s. 78
Errors 'if' construct must use '{}'s. 93
Errors '{' should be on a new line. 96
Errors '{' should be on a new line. 97
Errors '{' should be on a new line. 99
Errors 'if' construct must use '{}'s. 106
Errors 'if' construct must use '{}'s. 136
Errors '{' should be on a new line. 149

org/apache/myfaces/buildtools/maven2/plugin/faces/util/Util.java

Violation Message Line
Errors '{' should be on a new line. 45
Errors '{' should be on a new line. 47
Errors '{' should be on a new line. 48
Errors 'if' construct must use '{}'s. 59
Errors 'if' construct must use '{}'s. 70
Errors 'if' construct must use '{}'s. 76
Errors 'if' construct must use '{}'s. 107
Errors '{' should be on a new line. 196
Errors '}' should be alone on a line. 210
Errors 'if' construct must use '{}'s. 220
Errors 'if' construct must use '{}'s. 222
Errors 'if' construct must use '{}'s. 224
Errors 'if' construct must use '{}'s. 226
Errors 'if' construct must use '{}'s. 228
Errors 'if' construct must use '{}'s. 230
Errors 'if' construct must use '{}'s. 232
Errors 'if' construct must use '{}'s. 234
Errors 'else' construct must use '{}'s. 236
Errors 'if' construct must use '{}'s. 242
Errors 'if' construct must use '{}'s. 244
Errors 'if' construct must use '{}'s. 246
Errors 'if' construct must use '{}'s. 248
Errors 'if' construct must use '{}'s. 250
Errors 'if' construct must use '{}'s. 252
Errors 'if' construct must use '{}'s. 254
Errors 'if' construct must use '{}'s. 256
Errors 'else' construct must use '{}'s. 258
Errors 'if' construct must use '{}'s. 266
Errors 'if' construct must use '{}'s. 280
Errors 'if' construct must use '{}'s. 304
Errors 'if' construct must use '{}'s. 307
Errors '{' should be on a new line. 346
Errors '{' should be on a new line. 349
Errors '{' should be on a new line. 352
Errors '}' should be alone on a line. 354
Errors '{' should be on a new line. 354
Errors '{' should be on a new line. 355
Errors '}' should be alone on a line. 357
Errors '{' should be on a new line. 357
Errors '}' should be alone on a line. 360
Errors '{' should be on a new line. 360

org/apache/myfaces/buildtools/maven2/plugin/faces/util/XIncludeFilter.java

Violation Message Line
Errors 'if' construct must use '{}'s. 83
Errors 'if' construct must use '{}'s. 102
Errors 'if' construct must use '{}'s. 110
Errors 'if' construct must use '{}'s. 121

org/apache/myfaces/buildtools/maven2/plugin/faces/util/XPointerFilter.java

Violation Message Line
Errors 'if' construct must use '{}'s. 41
Errors 'if' construct must use '{}'s. 91
Errors 'if' construct must use '{}'s. 100