// This rule specifies whether more then 1
field declarations
// are allowed.
// Declarations of the same type type can be separated by ','
// but it makes the code harder to read.
// more the 1 field declarations per line
int row = 0, column = 0, maxNumber = 100, stepSize
= 5;
int visibileCount = 100;
// 1 field declaration per line
int row = 0;
int column = 0;
int maxNumber = 100;
int stepSize = 5;
int visibileCount = 100;