use of org.eclipse.wst.xml.ui.internal.search.XMLFindOccurrencesProcessor in project webtools.sourceediting by eclipse.
the class XMLFindOccurencesHandler method getProcessors.
protected List getProcessors() {
if (fProcessors == null) {
fProcessors = new ArrayList();
XMLFindOccurrencesProcessor htmlProcessor = new XMLFindOccurrencesProcessor();
fProcessors.add(htmlProcessor);
}
return fProcessors;
}
Aggregations