Package org.eclipse.wst.sse.ui.internal.correction

Examples of org.eclipse.wst.sse.ui.internal.correction.CompoundQuickAssistProcessor


   * @see org.eclipse.jface.text.source.SourceViewerConfiguration#getQuickAssistAssistant(org.eclipse.jface.text.source.ISourceViewer)
   */
  public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) {
    if (fQuickAssistant == null) {
      IQuickAssistAssistant assistant = new QuickAssistAssistant();
      assistant.setQuickAssistProcessor(new CompoundQuickAssistProcessor());
      assistant.setInformationControlCreator(getQuickAssistAssistantInformationControlCreator());

      // Waiting for color preferences, see:
      // https://bugs.eclipse.org/bugs/show_bug.cgi?id=133731
      // set content assist preferences
View Full Code Here


   * @see org.eclipse.jface.text.source.SourceViewerConfiguration#getQuickAssistAssistant(org.eclipse.jface.text.source.ISourceViewer)
   */
  public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) {
    if (fQuickAssistant == null) {
      IQuickAssistAssistant assistant = new QuickAssistAssistant();
      assistant.setQuickAssistProcessor(new CompoundQuickAssistProcessor());
      assistant.setInformationControlCreator(getQuickAssistAssistantInformationControlCreator());

      // Waiting for color preferences, see:
      // https://bugs.eclipse.org/bugs/show_bug.cgi?id=133731
      // set content assist preferences
View Full Code Here

  public IQuickAssistAssistant getQuickAssistAssistant(
      ISourceViewer sourceViewer) {
    if (fQuickAssistant == null) {
      IQuickAssistAssistant assistant = new PHPCorrectionAssistant();
      assistant
          .setQuickAssistProcessor(new CompoundQuickAssistProcessor());
      fQuickAssistant = assistant;
    }
    return fQuickAssistant;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.sse.ui.internal.correction.CompoundQuickAssistProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.