Package org.eclipse.ui.texteditor.spelling

Examples of org.eclipse.ui.texteditor.spelling.ISpellingProblemCollector


            }

            int size = regions.size();
            if (size > 0) {
                //only create the collector when actually needed for the current model
                ISpellingProblemCollector spellingProblemCollector = new SpellingProblemCollector(annotationModel);
                fSpellingService.check(fDocument, regions.toArray(new IRegion[size]), fSpellingContext,
                        spellingProblemCollector, fProgressMonitor);
            }

        } catch (BadLocationException e) {
View Full Code Here

TOP

Related Classes of org.eclipse.ui.texteditor.spelling.ISpellingProblemCollector

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.