Package org.evolizer.famix.importer.nodehandler

Examples of org.evolizer.famix.importer.nodehandler.NameAccessHandler.visit()


    public boolean visit(QualifiedName qualifiedName) {
        sLogger.debug("Processing qualified name node " + qualifiedName.getFullyQualifiedName());

        AbstractASTNodeHandler lNameAccessHandler = new NameAccessHandler(this);
        fNodeHandler.put(qualifiedName, lNameAccessHandler);
        return lNameAccessHandler.visit(qualifiedName);
    }

    /**
     * Handle field accesses via simple names, e.g., <code>field</code>.
     *
 
View Full Code Here


    public boolean visit(SimpleName simpleName) {
        sLogger.debug("Processing simple name node " + simpleName.getFullyQualifiedName());

        AbstractASTNodeHandler lNameAccessHandler = new NameAccessHandler(this);
        fNodeHandler.put(simpleName, lNameAccessHandler);
        return lNameAccessHandler.visit(simpleName);
    }

    /**
     * Handle type cast statements.
     *
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.