Skip to content

Code style convention

rosbo edited this page Aug 27, 2012 · 2 revisions

Indent: 4 Spaces

Ordering inside a class

  • static class
  • inner class
  • static variable
  • instance variable
  • constructors
  • methods (Override before other methods with the same scope)

Scope ordering

  • public
  • protected
  • package private
  • private
Clone this wiki locally