Package org.eclipse.ui.texteditor.spelling

Examples of org.eclipse.ui.texteditor.spelling.SpellingReconcileStrategy$SpellingProblemCollector


    SpellingService spellingService= EditorsUI.getSpellingService();
    if (spellingService.getActiveSpellingEngineDescriptor(fPreferenceStore) == null)
      return null;
   
    IReconcilingStrategy strategy= new SpellingReconcileStrategy(sourceViewer, spellingService);
    MonoReconciler reconciler= new MonoReconciler(strategy, false);
    reconciler.setIsIncrementalReconciler(false);
    reconciler.setProgressMonitor(new NullProgressMonitor());
    reconciler.setDelay(500);
    return reconciler;
View Full Code Here

TOP

Related Classes of org.eclipse.ui.texteditor.spelling.SpellingReconcileStrategy$SpellingProblemCollector

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.