use of org.eclipse.jdt.internal.core.search.matching.ConstructorDeclarationPattern in project xtext-eclipse by eclipse.
the class JdtBasedConstructorScope method collectContents.
public void collectContents(IJavaSearchScope searchScope, SearchRequestor searchRequestor) throws CoreException {
SearchPattern pattern = new ConstructorDeclarationPattern(null, null, SearchPattern.R_PREFIX_MATCH);
new SearchEngine().search(pattern, SearchUtils.getDefaultSearchParticipants(), searchScope, searchRequestor, new NullProgressMonitor());
}
Aggregations