Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

  • Fields, Methods and Classes must have a modifier: Public, Private or Protected. Package access is to be avoided where possible as this will cause extensibility issues once we move to OSGI or JDK Jigsaw.
  • Where possible inner classes should be static final to improve performance.
  • Declare method and constructor arguments final to avoid potential bugs and improve performance.
  • No labels