Search in sources :

Example 1 with HTMLFindOccurrencesProcessor

use of org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor 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)

Example 2 with HTMLFindOccurrencesProcessor

use of org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor in project webtools.sourceediting by eclipse.

the class JsFindOccurrencesActionDelegate method getProcessors.

protected List getProcessors() {
    if (fProcessors == null) {
        fProcessors = new ArrayList();
        HTMLFindOccurrencesProcessor htmlProcessor = new HTMLFindOccurrencesProcessor();
        fProcessors.add(htmlProcessor);
    // temporary, workaround to disable function, since using the
    // function
    // can easily cause deadlock to occur.
    // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=103662
    // JSPFindOccurrencesProcessor jspProcessor = new
    // JSPFindOccurrencesProcessor();
    // fProcessors.add(jspProcessor);
    }
    return fProcessors;
}
Also used : ArrayList(java.util.ArrayList) HTMLFindOccurrencesProcessor(org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor)

Example 3 with HTMLFindOccurrencesProcessor

use of org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor in project webtools.sourceediting by eclipse.

the class JSPFindOccurrencesActionDelegate 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)

Example 4 with HTMLFindOccurrencesProcessor

use of org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor in project webtools.sourceediting by eclipse.

the class HTMLFindOccurrencesHandler method getProcessors.

protected List getProcessors() {
    if (fProcessors == null) {
        fProcessors = new ArrayList();
        HTMLFindOccurrencesProcessor htmlProcessor = new HTMLFindOccurrencesProcessor();
        fProcessors.add(htmlProcessor);
    }
    return fProcessors;
}
Also used : ArrayList(java.util.ArrayList) HTMLFindOccurrencesProcessor(org.eclipse.wst.html.ui.internal.search.HTMLFindOccurrencesProcessor)

Aggregations

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