Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 0ef4b79b2bdc63f4e1be3db6687f87c41d725a05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package org.eclipse.jst.jsp.ui.internal.contentassist;

import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jst.jsp.core.internal.java.JSPTranslation;

public class JSPELCompletionProcessor extends JSPCompletionProcessor {
	protected JSPProposalCollector getProposalCollector(ICompilationUnit cu, JSPTranslation translation) {
		return new JSPELProposalCollector(cu, translation);
	}
}

Back to the top