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

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


     * @return an iterator for the references to aAST.
     */
    private Iterator getReferences(DetailAST aAST)
    {
        final SymTabAST ident = getASTManager().get(aAST);
        final Definition definition =
            (Definition) ident.getDefinition();
        if (definition != null) {
            return definition.getReferences();
        }
        final Set dummy = new HashSet();
        return dummy.iterator();
    }
View Full Code Here


    {
        final SymTabAST ident = getASTManager().get(aAST);
        if (ident == null) {
            return 0;
        }
        final Definition definition =
            (Definition) ident.getDefinition();
        if (definition != null) {
            return definition.getNumReferences();
        }

        return 0;
    }
View Full Code Here

TOP

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

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.