Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Avoid JavaDocs which add no explanation beyond what can be easily deduced from the code.

For the most part, classes should be laid out in the following order:

...

LOG

...

fields

...

constructors

...

overridden methods (public)

...

protected/private methods

...

getters and setters with logic

...

Organize classes in a meaningful order as recommending inĀ Java Coding Standards#ClassStructure