NC - Naming Conventions

Takes a regular expression and item name and reports all occurrences where the pattern does not match the declaration.

Wrong

package _audit;
class _AuditNC {
    void operation1 (int Parameter) {
    void Operation2 (int parameter) {
        int _variable;
    }
    int my_attribute;
    final static int constant;
}

Tip: Rename packages, classes, members etc. in a proper way.

Right

package audit;
class AuditNC {
    void operation1 (int parameter) {
    void operation2 (int parameter) {
        int variable;
    }
    int myAttribute;
    final static int CONSTANT;
}