Uses of Class
com.inet.jortho.SpellCheckerOptions
-
Packages that use SpellCheckerOptions Package Description com.inet.jortho This package implements the spell checker JOrtho. -
-
Uses of SpellCheckerOptions in com.inet.jortho
Fields in com.inet.jortho declared as SpellCheckerOptions Modifier and Type Field Description private static SpellCheckerOptions
SpellChecker. globalOptions
private SpellCheckerOptions
AutoSpellChecker. options
private SpellCheckerOptions
CheckerListener. options
private SpellCheckerOptions
SpellCheckerDialog. options
private SpellCheckerOptions
Tokenizer. options
Methods in com.inet.jortho that return SpellCheckerOptions Modifier and Type Method Description static SpellCheckerOptions
SpellChecker. getOptions()
Get the default SpellCheckerOptions.Methods in com.inet.jortho with parameters of type SpellCheckerOptions Modifier and Type Method Description static javax.swing.JMenu
SpellChecker. createCheckerMenu(SpellCheckerOptions options)
Creates a menu item "Orthography" (or the equivalent depending on the user language) with a sub-menu that includes suggestions for a correct spelling.static javax.swing.JPopupMenu
SpellChecker. createCheckerPopup(SpellCheckerOptions options)
Create a dynamic JPopupMenu with a list of suggestion.static javax.swing.JMenu
SpellChecker. createLanguagesMenu(SpellCheckerOptions options)
Creates a menu item "Languages" (or the equivalent depending on the user language) with a sub-menu that lists all available dictionary languages.static void
SpellChecker. enableAutoSpell(javax.swing.text.JTextComponent text, boolean enable, SpellCheckerOptions options)
Enable or disable the auto spell checking feature (red zigzag line) for a text component.static void
SpellChecker. enableShortKey(javax.swing.text.JTextComponent text, boolean enable, SpellCheckerOptions options)
Enable or disable the F7 key.(package private) boolean
LanguageBundle_fr. existInDictionary(java.lang.String word, Dictionary dictionary, SpellCheckerOptions options, boolean isFirstWordInSentence)
(package private) boolean
LanguageBundle. existInDictionary(java.lang.String word, Dictionary dictionary, SpellCheckerOptions options, boolean isFirstWordInSentence)
Check if the word is in the current dictionary.static void
SpellChecker. showSpellCheckerDialog(javax.swing.text.JTextComponent text, SpellCheckerOptions options)
Show the Spell Checker dialog for the given JTextComponent.Constructors in com.inet.jortho with parameters of type SpellCheckerOptions Constructor Description AutoSpellChecker(javax.swing.text.JTextComponent text, SpellCheckerOptions options)
CheckerListener(javax.swing.JComponent menu, SpellCheckerOptions options)
Create a PopupMenuListenerCheckerMenu(SpellCheckerOptions options)
CheckerPopup(SpellCheckerOptions options)
SpellCheckerDialog(java.awt.Dialog owner, boolean modal, SpellCheckerOptions options)
SpellCheckerDialog(java.awt.Frame owner, boolean modal, SpellCheckerOptions options)
Tokenizer(javax.swing.text.JTextComponent jText, Dictionary dictionary, java.util.Locale locale, int startOffset, int endOffset, SpellCheckerOptions options)
Create a tokenizer for the selected range.Tokenizer(javax.swing.text.JTextComponent jText, Dictionary dictionary, java.util.Locale locale, int offset, SpellCheckerOptions options)
Create a Tokenizer for the current paragraphTokenizer(javax.swing.text.JTextComponent jText, Dictionary dictionary, java.util.Locale locale, SpellCheckerOptions options)
Create a tokenizer for the completely text document.
-