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”,使用“*”。