Package | Description |
---|---|
org.mdiutil.jfx.autocomplete |
This package contains several classes which implements an Autocomplete behavior in JavaFX.
|
org.mdiutil.swing.autocomplete |
This package contains several classes which implements an Autocomplete behavior in Swing.
|
org.mdiutil.text.autocomplete |
This package contains several classes which model an AutoComplete behavior.
|
Modifier and Type | Method and Description |
---|---|
AutoCompleteDictionary.Item |
AutoCompleteEvent.getItem()
Return the selected item used for autoCompletion.
|
Modifier and Type | Method and Description |
---|---|
boolean |
JFXAutoComplete.addItemToSuggestions(String category,
AutoCompleteDictionary.Item item)
Add a category to the list of suggestions in the Popup Window.
|
boolean |
JFXAutoComplete.addToDictionary(AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
JFXAutoComplete.addToDictionary(String category,
AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
JFXAutoComplete.removeFromDictionary(AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
boolean |
JFXAutoComplete.removeFromDictionary(String category,
AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
Constructor and Description |
---|
AutoCompleteEvent(int startOffset,
AutoCompleteDictionary.Item item)
Constructor.
|
AutoCompleteEvent(Object source,
javafx.event.EventTarget target,
int startOffset,
AutoCompleteDictionary.Item item) |
SuggestedHit(AutoCompleteDictionary.Item item)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
AutoCompleteDictionary.Item |
AutoCompleteEvent.getItem()
Return the selected item used for autoCompletion.
|
Modifier and Type | Method and Description |
---|---|
boolean |
JAutoComplete.addItemToSuggestions(String category,
AutoCompleteDictionary.Item item)
Add a category to the list of suggestions in the Popup Window.
|
boolean |
JAutoComplete.addToDictionary(AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
JAutoComplete.addToDictionary(String category,
AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
JAutoComplete.removeFromDictionary(AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
boolean |
JAutoComplete.removeFromDictionary(String category,
AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
Constructor and Description |
---|
AutoCompleteEvent(JAutoComplete source,
int startOffset,
AutoCompleteDictionary.Item item)
Constructor.
|
SuggestedHit(AutoCompleteDictionary.Item item)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
AutoCompleteDictionary.Item |
AutoCompleteOnlineEngine.getItem()
Return the item matched from the last hit.
|
AutoCompleteDictionary.Item |
DefaultOnlineEngine.getItem()
Return the item matched from the last hit.
|
Modifier and Type | Method and Description |
---|---|
SortedMap<String,List<AutoCompleteDictionary.Item>> |
AutoCompleteDictionary.Category.getDictionnary()
Return the dictionary for the category.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AutoComplete.addItemToSuggestions(String category,
AutoCompleteDictionary.Item item)
Add a category to the list of suggestions in the Popup Window.This method maybe used in
an
AutoCompleteEngine used for the search with a Popup Window. |
boolean |
AutoComplete.addToDictionary(AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
AutoCompleteDictionary.addToDictionary(AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
AutoComplete.addToDictionary(String category,
AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
AutoCompleteDictionary.addToDictionary(String category,
AutoCompleteDictionary.Item item)
Add an item to the dictionary to use for the autoComplete.
|
boolean |
AutoComplete.removeFromDictionary(AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
boolean |
AutoCompleteDictionary.removeFromDictionary(AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
boolean |
AutoComplete.removeFromDictionary(String category,
AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|
boolean |
AutoCompleteDictionary.removeFromDictionary(String category,
AutoCompleteDictionary.Item item)
Remove an item from the dictionary to use for the autoComplete.
|