Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类Book,其中有一些注释,如@Override, @Before, @After.
Book
@Override
@Before
@After
如何使用 获取这些注释ICompilationUnit?
ICompilationUnit
IAnnotation 的 Javadoc指出:
“使用 IAnnotatable.getAnnotation(String) 获得注释。
请注意,注释不是其声明元素的子元素。要获取注释列表,请使用 IAnnotatable.getAnnotations()。"
什么是 IAnnotatable?IField、ILocalVariable、IMethod、IPackageDeclaration、IType。
ICompilationUnit 上有用于获取这些类型的对象的方法。