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

Examples of org.eclipse.wst.sse.ui.internal.spelling.SpellcheckStrategy


      if (contentTypeId == null) {
        contentTypeId = IContentTypeManager.CT_TEXT;
      }
      if (getTextViewer() instanceof ISourceViewer) {
        ISourceViewer viewer = (ISourceViewer) getTextViewer();
        fSpellcheckStrategy = new SpellcheckStrategy(viewer, contentTypeId);
        fSpellcheckStrategy.setDocument(getDocument());
      }
    }
    return fSpellcheckStrategy;
  }
View Full Code Here


      if (contentTypeId == null) {
        contentTypeId = IContentTypeManager.CT_TEXT;
      }
      if (getTextViewer() instanceof ISourceViewer) {
        ISourceViewer viewer = (ISourceViewer) getTextViewer();
        fSpellcheckStrategy = new SpellcheckStrategy(viewer, contentTypeId);
        fSpellcheckStrategy.setDocument(getDocument());
      }
    }
    return fSpellcheckStrategy;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.sse.ui.internal.spelling.SpellcheckStrategy

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.