Examples of visit()


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

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

    public boolean visit(SuperConstructorInvocation superConstructorInvocation) {
        sLogger.debug("Processing super constructor invocation node");

        AbstractASTNodeHandler lInvocationHandler = new SuperConstructorInvocationHandler(this);
        fNodeHandler.put(superConstructorInvocation, lInvocationHandler);
        return lInvocationHandler.visit(superConstructorInvocation);
    }

    /**
     * Handle class instance creation statements (i.e., new).
     *
 
View Full Code Here

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

    public boolean visit(SuperFieldAccess superFieldAccess) {
        sLogger.debug("Processing super field access node " + superFieldAccess.getName());

        AbstractASTNodeHandler lSuperFieldAccessHandler = new SuperFieldAccessHandler(this);
        fNodeHandler.put(superFieldAccess, lSuperFieldAccessHandler);
        return lSuperFieldAccessHandler.visit(superFieldAccess);
    }

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

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

    public boolean visit(SuperMethodInvocation superMethodInvocation) {
        sLogger.debug("Processing super method invocation node");

        AbstractASTNodeHandler lInvocationHandler = new SuperMethodInvocationHandler(this);
        fNodeHandler.put(superMethodInvocation, lInvocationHandler);
        return lInvocationHandler.visit(superMethodInvocation);
    }

    /**
     * Handle super constructor invocations.
     *
 
View Full Code Here

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

        } catch (JavaModelException e) {
            e.printStackTrace();
        }

        fNodeHandler.put(typeDeclaration, lTypeHandler);
        return lTypeHandler.visit(typeDeclaration);
    }

    /**
     * Finish type declarations.
     *
 
View Full Code Here

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

    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);
    }

    /**
     * Handle single variable declarations (e.g., in catch clauses).
     * Formal parameters are handled in the method declaration.
View Full Code Here

Examples of org.exoplatform.services.jcr.impl.dataflow.ItemDataRemoveVisitor.visit()

                  // if it's a target node
                  existing = sameIdentifierNode;

                  // remove existed node, with validation
                  ItemDataRemoveVisitor removeVisitor = new RemoveVisitor();
                  removeVisitor.visit(existing);

                  changes.addAll(removeVisitor.getRemovedStates());
               }
               else if (!sameIdentifierPath.isDescendantOf(nodePath))
               {
View Full Code Here

Examples of org.geomajas.plugin.rasterizing.sld.RasterizingStyleVisitor.visit()

        throw new LayerException(ExceptionCode.INVALID_SLD, location, layer.getId());
      }
    }
    // visit to draw/omit labels/geometries
    RasterizingStyleVisitor visitor = new RasterizingStyleVisitor(vectorLayerRasterizingInfo);
    visitor.visit(style);
    return (Style) visitor.getCopy();
  }

  private Style createNamedStyle(VectorLayer layer, VectorLayerRasterizingInfo vectorLayerRasterizingInfo)
      throws GeomajasException {
View Full Code Here

Examples of org.geoserver.catalog.CascadeDeleteVisitor.visit()

            cat.remove(store);
        }
        else if (recurse){
            CascadeDeleteVisitor delete = new CascadeDeleteVisitor(cat);
            if( store instanceof DataStoreInfo){
                delete.visit((DataStoreInfo)store);
            }
            else if( store instanceof CoverageStoreInfo){
                delete.visit((CoverageStoreInfo)store);
            }
            else if( store instanceof WMSStoreInfo){
View Full Code Here

Examples of org.geoserver.catalog.CascadeRemovalReporter.visit()

        CascadeRemovalReporter visitor = new CascadeRemovalReporter(catalog);

        String name = getLayerId(MockData.LAKES);
        LayerInfo layer = catalog.getLayerByName(name);
        assertNotNull(layer);
        visitor.visit(layer);
        //layer.accept(visitor);
       
        // we expect a layer, a resource and a group
        assertEquals(3, visitor.getObjects(null).size());
       
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.