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;
}
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;
}
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;
}
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;
}
Aggregations