Look for qualified this usages in the same class.

Examples:

    public void method() {
        // Put single line comment above code. (Note: align '//' comment with code)
        int a = 3;

        /**
        * Some description about follow code. (Note: align '/**' comment with code)
        */
        int b = 4;
    }