// This rule specifies how many NCSS are accepted
// for a constructor declaration.
// NCSS stands for Non Commenting Source Statements
// which is the sum of statements and declarations.
// Simplified (but not 100% correct) it counts '{'
// and ';'
// There is nothing wrong with many NCCS per constructor
// but it indicates bad coding style. In the world
// of eXtreme programming a NCSS of 5 is the maximum.

// see 
//
http://www.kclee.com/clemens/java/javancss
// for details