use of org.eclipse.jst.jsp.ui.internal.java.search.JSPFindOccurrencesProcessor in project webtools.sourceediting by eclipse.
the class JSPFindOccurrencesHandler method getProcessors.
protected List getProcessors() {
if (fProcessors == null) {
fProcessors = new ArrayList();
HTMLFindOccurrencesProcessor htmlProcessor = new HTMLFindOccurrencesProcessor();
fProcessors.add(htmlProcessor);
JSPFindOccurrencesProcessor jspProcessor = new JSPFindOccurrencesProcessor();
fProcessors.add(jspProcessor);
}
return fProcessors;
}
Aggregations