Uses of Interface
org.controlsfx.control.textfield.AutoCompletionBinding.ISuggestionRequest
-
Packages that use AutoCompletionBinding.ISuggestionRequest Package Description org.controlsfx.control.textfield A package containing a number of useful classes related to text input. -
-
Uses of AutoCompletionBinding.ISuggestionRequest in org.controlsfx.control.textfield
Method parameters in org.controlsfx.control.textfield with type arguments of type AutoCompletionBinding.ISuggestionRequest Modifier and Type Method Description static <T> AutoCompletionBinding<T>
TextFields. bindAutoCompletion(javafx.scene.control.TextField textField, javafx.util.Callback<AutoCompletionBinding.ISuggestionRequest,Collection<T>> suggestionProvider)
Create a new auto-completion binding between the given textField and the given suggestion provider.static <T> AutoCompletionBinding<T>
TextFields. bindAutoCompletion(javafx.scene.control.TextField textField, javafx.util.Callback<AutoCompletionBinding.ISuggestionRequest,Collection<T>> suggestionProvider, javafx.util.StringConverter<T> converter)
Create a new auto-completion binding between the given textField and the given suggestion provider.Constructor parameters in org.controlsfx.control.textfield with type arguments of type AutoCompletionBinding.ISuggestionRequest Constructor Description AutoCompletionBinding(javafx.scene.Node completionTarget, javafx.util.Callback<AutoCompletionBinding.ISuggestionRequest,Collection<T>> suggestionProvider, javafx.util.StringConverter<T> converter)
Creates a new AutoCompletionBinding
-