private List fProcessors;
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;