如何在JDT / ASTVisitor()中存储值?

时间:2013-01-17 04:11:31

标签: java abstract-syntax-tree eclipse-jdt

我有一个代码,用于检测源中方法的起始位置和调用长度,如下所示。

我需要将这些数据存储在ASTVisitor()之外,但是使用final int,我得到了一个错误。

如何在ASTVisitor()中存储值?

public void setPositionFinder(String methodName) throws JavaModelException
{
    //findMethod(methodName);
    IType type = this.javaProject.findType(this.className);
    ICompilationUnit unit = type.getCompilationUnit();
    ASTParser parser = ASTParser.newParser(AST.JLS3);
    parser.setSource(unit);
    parser.setResolveBindings(true);
    CompilationUnit cunit = (CompilationUnit) parser.createAST(null);
    //ASTNode root = parser.createAST(null);

    final String name = this.newMethodName;
    final int startPosition = -1;
    final int length = -1;

    cunit.accept(new ASTVisitor() {
        public boolean visit(MethodInvocation methodInvocation)
        {
            String methodName = methodInvocation.getName().toString();
            System.out.println(methodName);
            if (methodName.equals(name))
            {
                // ERROR!
                startPosition = methodInvocation.getStartPosition();
                length = methodInvocation.getLength();
                System.out.printf("startPosition %d - Length %d", startPosition, length);       
            }
            return false;
        }
    });
}

enter image description here

1 个答案:

答案 0 :(得分:1)

starPosition length 变量声明为类的静态成员变量。然后,您可以从ASTVisitor内部类中访问。将setPositionFinder方法更改为静态也可能是首选,因此可以以静态方式调用它。