Archive for November, 2005

Java Conventions for Dummies

Monday, November 7th, 2005

For those of you who are too lazy to read the Java Coding Convention post, here is the summary:
File Organization:
Add this comment at the beginning of each .java file
/*
* Classname
*
* Date
*
*/
Order of declarations inside a class:

static variables
instance variables
contructors
methods

Indentation:
To make it easier, just select the code and press Ctrl+I in Eclipse […]