Package org.evolizer.famix.importer.nodehandler

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


     */
    @Override
    public boolean visit(VariableDeclarationFragment variableDeclarationFragment) {
        sLogger.debug("Processing variable declaration fragment node " + variableDeclarationFragment.getName());

        AbstractASTNodeHandler lVariableDeclarationHandler = new VariableDeclarationFragmentHandler(this);
        fNodeHandler.put(variableDeclarationFragment, lVariableDeclarationHandler);
        return lVariableDeclarationHandler.visit(variableDeclarationFragment);
    }
View Full Code Here


    @Override
    public boolean visit(SingleVariableDeclaration singleVariableDeclaration) {
        sLogger.debug("Processing single variable declaration statement node " + singleVariableDeclaration);

        if (singleVariableDeclaration.getParent() instanceof CatchClause) {
            AbstractASTNodeHandler lVariableDeclarationHandler = new VariableDeclarationFragmentHandler(this);
            fNodeHandler.put(singleVariableDeclaration, lVariableDeclarationHandler);
            return lVariableDeclarationHandler.visit(singleVariableDeclaration);
        }

        return true;
    }
View Full Code Here

TOP

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

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.