Package com.puppycrawl.tools.checkstyle.checks.usage.transmogrify

Examples of com.puppycrawl.tools.checkstyle.checks.usage.transmogrify.Reference


            methods.clear();
            final DetailAST nameAST = (DetailAST) it.next();
            // find methods using the field
            final Iterator refIt = getReferences(nameAST);
            while (refIt.hasNext()) {
                final Reference ref = (Reference) refIt.next();
                final SymTabAST refNode = ref.getTreeNode();
                final DetailAST refDetail = refNode.getDetailNode();
                // don't need to check a self-reference
                if (refDetail == nameAST) {
                    continue;
                }
View Full Code Here

TOP

Related Classes of com.puppycrawl.tools.checkstyle.checks.usage.transmogrify.Reference

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.