1

コンパイラ Tree API を使用してコードを解析して AST に変換していますが、visitCompilationUnit メソッドが呼び出されず、visitClass メソッドが呼び出されません。何が間違っていますか?

2 番目の質問: コンパイルされたコードを切り捨てるようにコンパイラに指示する方法はありますか (クラス ファイルではなく、AST のみに関心があります)。

ありがとう。

@SupportedSourceVersion(value=SourceVersion.RELEASE_7)
@SupportedAnnotationTypes("*")
public class Parser extends AbstractProcessor {
.
.
.
    @Override
    public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnvironment) {
       for (Element e : roundEnvironment.getRootElements()) {
            System.out.println(e + "***");
            TreePath tp = trees.getPath(e);
            // invoke the scanner
            rootVisitor.scan(tp, trees);
        }
        return true;
    }
}



public class OdpaVisitor extends TreePathScanner<Object, Trees> {

    protected RepositoryIface repository;

    private String pckg;

    public OdpaVisitor(RepositoryIface repository) {
        this.repository = repository;
    }

    @Override
    public Object visitCompilationUnit(CompilationUnitTree node, Trees p) {
        repository.savePackage(node.getPackageName().toString());
        this.pckg = node.getPackageName().toString();
        return super.visitCompilationUnit(node, p);
    }    

    @Override
    public Object visitClass(ClassTree node, Trees p) {
        repository.saveClass(node.getSimpleName().toString(), pckg);
        return super.visitClass(node, p);
    }
}
4

1 に答える 1

2

getTree メソッドを使用してClassTreeへの参照を取得した可能性があります。

あなたが必要

  1. getPath メソッドを使用してTreePathへの参照を取得します。以前に検出した ClassTree を引数として使用します e.
  2. getCompilationUnit メソッドを使用してCompilationUnitTreeへの参照を取得します。
于 2012-04-05T14:43:35.730 に答える