Module org.controlsfx.controls
Package org.controlsfx.control.textfield
Class AutoCompletionBinding.AutoCompletionEvent<TE>
- java.lang.Object
-
- java.util.EventObject
-
- javafx.event.Event
-
- org.controlsfx.control.textfield.AutoCompletionBinding.AutoCompletionEvent<TE>
-
- All Implemented Interfaces:
Serializable
,Cloneable
- Enclosing class:
- AutoCompletionBinding<T>
public static class AutoCompletionBinding.AutoCompletionEvent<TE> extends Event
Represents an Event which is fired after an auto completion.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EventType<AutoCompletionBinding.AutoCompletionEvent<?>>
AUTO_COMPLETED
The event type that should be listened to by people interested in knowing when an auto completion has been performed.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description AutoCompletionEvent(TE completion)
Creates a new event that can subsequently be fired.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TE
getCompletion()
Returns the chosen completion.-
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumed
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
AUTO_COMPLETED
public static final EventType<AutoCompletionBinding.AutoCompletionEvent<?>> AUTO_COMPLETED
The event type that should be listened to by people interested in knowing when an auto completion has been performed.
-
-
Constructor Detail
-
AutoCompletionEvent
public AutoCompletionEvent(TE completion)
Creates a new event that can subsequently be fired.
-
-
Method Detail
-
getCompletion
public TE getCompletion()
Returns the chosen completion.
-
-