Example usage for org.eclipse.jdt.core.dom ASTVisitor subclass-usage

List of usage examples for org.eclipse.jdt.core.dom ASTVisitor subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom ASTVisitor subclass-usage.

Usage

From source file ASTParser.ParseJavaFile.java

class CommentVisitor extends ASTVisitor {

    CompilationUnit cu;
    String source;
    StringBuffer allComments = new StringBuffer();

From source file at.bestsolution.fxide.jdt.corext.dom.GenericVisitor.java

/**
 * ASTVisitor that forwards all <code>visit(*)</code> calls to {@link #visitNode(ASTNode)}.
 * <p>
 * Note: New code should better use {@link ASTVisitor#preVisit2(ASTNode)}.
 * </p>
 *

From source file boa.datagen.util.Java7Visitor.java

/**
 * @author rdyer
 */
public class Java7Visitor extends ASTVisitor {
    protected HashMap<String, Integer> nameIndices;

From source file boa.datagen.util.JavaErrorCheckVisitor.java

/**
 * @author rdyer
 */
public class JavaErrorCheckVisitor extends ASTVisitor {
    public boolean hasError = false;

From source file boa.datagen.util.JavaVisitor.java

/**
 * @author rdyer
 */
public class JavaVisitor extends ASTVisitor {
    private HashMap<String, Integer> nameIndices;

From source file br.ufal.cideei.soot.instrument.asttounit.ASTNodesAtRangeFinder.java

/**
 * The Class ASTNodesAtRangeFinder maps ASTNodes to Units using their positions
 * (line and column) in the source code as a parameter.
 */
public class ASTNodesAtRangeFinder extends ASTVisitor {

From source file br.ufal.cideei.soot.instrument.asttounit.MultipleLineNumbersVisitor.java

public class MultipleLineNumbersVisitor extends ASTVisitor {
    private CompilationUnit compilationUnit;
    private Collection<Integer> lines;
    private Set<ASTNode> nodes = new HashSet<ASTNode>();

    public Set<ASTNode> getNodes() {

From source file br.ufal.cideei.soot.instrument.asttounit.SingleLineNumberVisitor.java

public class SingleLineNumberVisitor extends ASTVisitor {

    private CompilationUnit compilationUnit;
    private int line;
    private Set<ASTNode> nodes = new HashSet<ASTNode>();

From source file br.ufal.cideei.soot.instrument.LineNumberColorMapper.java

/**
 * The Class LineNumberColorMapper.
 */
public class LineNumberColorMapper extends ASTVisitor {

    protected static long extractTime = 0;

From source file br.ufal.cideei.visitors.AllFeatureNodes.java

public class AllFeatureNodes extends ASTVisitor {

    private ITextSelection textSelection;
    private IFile file;
    private IFeatureExtracter extracter;