1 11 12 package org.eclipse.ui.texteditor.spelling; 13 14 import org.eclipse.core.runtime.IProgressMonitor; 15 16 import org.eclipse.jface.text.IDocument; 17 import org.eclipse.jface.text.IRegion; 18 19 31 public interface ISpellingEngine { 32 33 43 public void check(IDocument document, IRegion[] regions, SpellingContext context, ISpellingProblemCollector collector, IProgressMonitor monitor); 44 } 45 | Popular Tags |