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 javafx.event.Event
Represents an Event which is fired after an auto completion.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final javafx.event.EventType<AutoCompletionBinding.AutoCompletionEvent<?>>
    The event type that should be listened to by people interested in knowing when an auto completion has been performed.

    Fields inherited from class javafx.event.Event

    ANY, consumed, eventType, NULL_SOURCE_TARGET, target

    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

    Modifier and Type
    Method
    Description
    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

    Methods inherited from class java.lang.Object

    equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • AUTO_COMPLETED

      public static final javafx.event.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 Details

    • AutoCompletionEvent

      public AutoCompletionEvent(TE completion)
      Creates a new event that can subsequently be fired.
  • Method Details

    • getCompletion

      public TE getCompletion()
      Returns the chosen completion.