Implementation of {@link StructuredContentAssistProcessor} for JSP documents
Currently this implementation still uses the HTML preferences for auto activation characters, but in the future this should probably change
184185186187188189190191192
* org.eclipse.jface.text.source.ISourceViewer, java.lang.String) */ protected IContentAssistProcessor[] getContentAssistProcessors( ISourceViewer sourceViewer, String partitionType) { IContentAssistProcessor processor = new JSPStructuredContentAssistProcessor( this.getContentAssistant(), partitionType, sourceViewer); return new IContentAssistProcessor[]{processor}; }
183184185186187188189190191