CODSTA.OGM
Organize member variables by name
Description
This rule flags code where group members with the same name are not ordered together.
This rule enforces various standards to improve readability.
Example
package CODSTA;
public class OGM {
void foo () {}
void bar () {}
void foo (int a) {
}
}
Repair
Move the members called "foo()" together.
|