View by Classes

Findings - Overview

code-style Declaration in wrong Order (public to private) (Checkstyle)

Further info on the wiki.

According to Code Conventions for the Java Programming Language , the parts of a class or interface declaration should appear in the following order

  • Class (static) variables. First the public class variables, then the protected, then package level (no access modifier), and then the private.
  • Instance variables. First the public class variables, then the protected, then package level (no access modifier), and then the private.
  • Constructors
  • Methods
  • 16org.jcoderz.guidelines.snippets.SampleSnippets
    Static variable definition in wrong order. [248:5],
    Variable access definition in wrong order. [248:5],
    Static variable definition in wrong order. [249:5],
    Variable access definition in wrong order. [249:5],
    Static variable definition in wrong order. [250:5],
    Variable access definition in wrong order. [250:5],
    Static variable definition in wrong order. [251:5],
    Variable access definition in wrong order. [251:5],
    Static variable definition in wrong order. [252:5],
    Variable access definition in wrong order. [252:5],
    Static variable definition in wrong order. [279:5],
    Instance variable definition in wrong order. [292:5],
    Variable access definition in wrong order. [292:5],
    Static variable definition in wrong order. [326:5],
    Variable access definition in wrong order. [326:5],
    Instance variable definition in wrong order. [329:5]
    4org.jcoderz.phoenix.report.SystemFindingType
    Static variable definition in wrong order. [47:4],
    Variable access definition in wrong order. [47:4],
    Static variable definition in wrong order. [55:4],
    Variable access definition in wrong order. [55:4]
    3org.jcoderz.commons.DevelopersLogFormatter
    Static variable definition in wrong order. [62:4],
    Static variable definition in wrong order. [64:4],
    Static variable definition in wrong order. [66:4]
    2org.jcoderz.testdata.Importer
    Variable access definition in wrong order. [60:5],
    Constructor definition in wrong order. [206:5]
    1org.jcoderz.phoenix.report.SourceDirectoryReader
    Static variable definition in wrong order. [67:4]