All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.SpellChecker

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.SpellChecker

public class SpellChecker
extends NativeObject
This class wraps the Objective-C class NSSpellChecker.


Constructor Index

 o SpellChecker()
This default constructor is equivalent to Objective-C's [[NSSpellChecker alloc] init].
 o SpellChecker(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o accessoryView()
A wrapper for the - accessoryView Objective-C instance method.
 o checkSpellingStartingAtOffset(String, int)
A wrapper for the - checkSpellingOfString:startingAt: Objective-C instance method.
 o closeSpellDocumentWithTag(int)
A wrapper for the - closeSpellDocumentWithTag: Objective-C instance method.
 o countWordsInString(String, String)
A wrapper for the - countWordsInString:language: Objective-C instance method.
 o ignoredWords(int)
A wrapper for the - ignoredWordsInSpellDocumentWithTag: Objective-C instance method.
 o ignoreWord(String, int)
A wrapper for the - ignoreWord:inSpellDocumentWithTag: Objective-C instance method.
 o language()
A wrapper for the - language Objective-C instance method.
 o setAccessoryView(View)
A wrapper for the - setAccessoryView: Objective-C instance method.
 o setIgnoredWords(Array, int)
A wrapper for the - setIgnoredWords:inSpellDocumentWithTag: Objective-C instance method.
 o setLanguage(String)
A wrapper for the - setLanguage: Objective-C instance method.
 o setWordFieldStringValue(String)
A wrapper for the - setWordFieldStringValue: Objective-C instance method.
 o sharedSpellChecker()
A wrapper for the + sharedSpellChecker Objective-C class method.
 o sharedSpellCheckerExists()
A wrapper for the + sharedSpellCheckerExists Objective-C class method.
 o spellingPanel()
A wrapper for the - spellingPanel Objective-C instance method.
 o uniqueSpellDocumentTag()
A wrapper for the + uniqueSpellDocumentTag Objective-C class method.
 o updateSpellingPanelWithMisspelledWord(String)
A wrapper for the - updateSpellingPanelWithMisspelledWord: Objective-C instance method.

Constructors

 o SpellChecker
 protected SpellChecker(boolean shouldAllocate,
                        int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o SpellChecker
 public SpellChecker()
This default constructor is equivalent to Objective-C's [[NSSpellChecker alloc] init].

Methods

 o sharedSpellChecker
 public static native SpellChecker sharedSpellChecker()
A wrapper for the + sharedSpellChecker Objective-C class method.

 o sharedSpellCheckerExists
 public static native boolean sharedSpellCheckerExists()
A wrapper for the + sharedSpellCheckerExists Objective-C class method.

 o uniqueSpellDocumentTag
 public static native int uniqueSpellDocumentTag()
A wrapper for the + uniqueSpellDocumentTag Objective-C class method.

 o checkSpellingStartingAtOffset
 public native Range checkSpellingStartingAtOffset(String stringToCheck,
                                                   int startingOffset)
A wrapper for the - checkSpellingOfString:startingAt: Objective-C instance method.

 o countWordsInString
 public native int countWordsInString(String stringToCount,
                                      String language)
A wrapper for the - countWordsInString:language: Objective-C instance method.

 o updateSpellingPanelWithMisspelledWord
 public native void updateSpellingPanelWithMisspelledWord(String word)
A wrapper for the - updateSpellingPanelWithMisspelledWord: Objective-C instance method.

 o spellingPanel
 public native Panel spellingPanel()
A wrapper for the - spellingPanel Objective-C instance method.

 o accessoryView
 public native View accessoryView()
A wrapper for the - accessoryView Objective-C instance method.

 o setAccessoryView
 public native void setAccessoryView(View aView)
A wrapper for the - setAccessoryView: Objective-C instance method.

 o ignoreWord
 public native void ignoreWord(String wordToIgnore,
                               int tag)
A wrapper for the - ignoreWord:inSpellDocumentWithTag: Objective-C instance method.

 o ignoredWords
 public native Array ignoredWords(int tag)
A wrapper for the - ignoredWordsInSpellDocumentWithTag: Objective-C instance method.

 o setIgnoredWords
 public native void setIgnoredWords(Array words,
                                    int tag)
A wrapper for the - setIgnoredWords:inSpellDocumentWithTag: Objective-C instance method.

 o closeSpellDocumentWithTag
 public native void closeSpellDocumentWithTag(int tag)
A wrapper for the - closeSpellDocumentWithTag: Objective-C instance method.

 o language
 public native String language()
A wrapper for the - language Objective-C instance method.

 o setLanguage
 public native boolean setLanguage(String language)
A wrapper for the - setLanguage: Objective-C instance method.

 o setWordFieldStringValue
 public native void setWordFieldStringValue(String aString)
A wrapper for the - setWordFieldStringValue: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index