Package org.evolizer.famix.importer.nodehandler

Examples of org.evolizer.famix.importer.nodehandler.AnonymTypeHandler


     */
    @Override
    public boolean visit(AnonymousClassDeclaration anonymTypeDeclaration) {
        sLogger.debug("Processing anonymous class declaration node");

        AbstractASTNodeHandler lTypeHandler = new AnonymTypeHandler(this);
        fNodeHandler.put(anonymTypeDeclaration, lTypeHandler);
        return lTypeHandler.visit(anonymTypeDeclaration);
    }
View Full Code Here

TOP

Related Classes of org.evolizer.famix.importer.nodehandler.AnonymTypeHandler

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.