0

我有一个类Book,其中有一些注释,如@Override, @Before, @After.

如何使用 获取这些注释ICompilationUnit

4

1 回答 1

1

IAnnotation 的 Javadoc指出:

“使用 IAnnotatable.getAnnotation(String) 获得注释。

请注意,注释不是其声明元素的子元素。要获取注释列表,请使用 IAnnotatable.getAnnotations()。"

什么是 IAnnotatable?IField、ILocalVariable、IMethod、IPackageDeclaration、IType。

ICompilationUnit 上有用于获取这些类型的对象的方法。

于 2012-06-15T11:38:29.033 回答