0

在 Eclipse 中使用 IClassFile 时如何检查注解?

这似乎不起作用 classFile.getClass().isAnnotationPresent?任何帮助表示赞赏。

使用问题

for (final IClassFile classFile : classFiles) {
    IAnnotation[] annotations = classFile.getType().getAnnotations();

是我必须获取所有包,然后获取该包中的类文件,然后获取注释。它将需要 3 个循环。有没有办法减少这种情况?

4

1 回答 1

1

instead. Take a look at the source code for the我会说您找到注释的最简单方法是通过三重循环,但使用“SearchEngine org.eclipse.jdt.internal.junit.launcher ”可能会稍微快一些(假设您正在寻找特定的注释).JUnit4TestFinder` 类。它查找使用@Test 或@RunWith 注释的(源)类,这与您想要执行的操作类似,但针对的是二进制类。

你会做这样的事情:

IJavaElement[] allPackagesToSearch = ...
SearchRequestor requestor = <implement the SearchRequestor abstract class and store all matches>

IJavaSearchScope scope= SearchEngine.createJavaSearchScope(binaryPackages, IJavaSearchScope.APPLICATION_LIBRARIES);
int matchRule= SearchPattern.R_EXACT_MATCH | SearchPattern.R_CASE_SENSITIVE;
SearchPattern runWithPattern= SearchPattern.createPattern("com.foo.MyAnnotation", IJavaSearchConstants.ANNOTATION_TYPE, IJavaSearchConstants.ANNOTATION_TYPE_REFERENCE, matchRule);
SearchParticipant[] searchParticipants= new SearchParticipant[] { SearchEngine.getDefaultSearchParticipant() };
new SearchEngine().search(annotationsPattern, searchParticipants, scope, requestor, new SubProgressMonitor(pm, 2));

这有点拗口,要弄清楚它是如何工作的,我建议阅读 SearchEngine、SearchPattern 和 SearchRequestor 的 JavaDoc。

如果要查找所有注释,则更改匹配规则,而不是“com.foo.MyAnnotation”,使用“*”。

于 2012-09-23T03:02:48.153 回答