FileDocCategorySizeDatePackage
SpellCheckerService.javaAPI DocAndroid 5.1 API1469Sat Mar 14 14:09:34 GMT 2015android.service.textservice

SpellCheckerService.java

package android.service.textservice;
public abstract class SpellCheckerService
  extends android.app.Service
{
public abstract static class Session
{
public  Session() { throw new RuntimeException("Stub!"); }
public abstract  void onCreate();
public abstract  android.view.textservice.SuggestionsInfo onGetSuggestions(android.view.textservice.TextInfo textInfo, int suggestionsLimit);
public  android.view.textservice.SuggestionsInfo[] onGetSuggestionsMultiple(android.view.textservice.TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) { throw new RuntimeException("Stub!"); }
public  android.view.textservice.SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(android.view.textservice.TextInfo[] textInfos, int suggestionsLimit) { throw new RuntimeException("Stub!"); }
public  void onCancel() { throw new RuntimeException("Stub!"); }
public  void onClose() { throw new RuntimeException("Stub!"); }
public  java.lang.String getLocale() { throw new RuntimeException("Stub!"); }
public  android.os.Bundle getBundle() { throw new RuntimeException("Stub!"); }
}
public  SpellCheckerService() { throw new RuntimeException("Stub!"); }
public final  android.os.IBinder onBind(android.content.Intent intent) { throw new RuntimeException("Stub!"); }
public abstract  android.service.textservice.SpellCheckerService.Session createSession();
public static final java.lang.String SERVICE_INTERFACE = "android.service.textservice.SpellCheckerService";
}