Search in sources :

Example 1 with JSPFindOccurrencesProcessor

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;
}
Also used : ArrayList(java.util.ArrayList) HTMLFindOccurrencesProcessor(org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor) JSPFindOccurrencesProcessor(org.eclipse.jst.jsp.ui.internal.java.search.JSPFindOccurrencesProcessor)

Aggregations

ArrayList (java.util.ArrayList)1 JSPFindOccurrencesProcessor (org.eclipse.jst.jsp.ui.internal.java.search.JSPFindOccurrencesProcessor)1 HTMLFindOccurrencesProcessor (org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor)1