Module org.controlsfx.controls
Package org.controlsfx.control
Class BreadCrumbBar.BreadCrumbActionEvent<TE>
- java.lang.Object
-
- java.util.EventObject
-
- javafx.event.Event
-
- org.controlsfx.control.BreadCrumbBar.BreadCrumbActionEvent<TE>
-
- All Implemented Interfaces:
Serializable
,Cloneable
- Enclosing class:
- BreadCrumbBar<T>
public static class BreadCrumbBar.BreadCrumbActionEvent<TE> extends Event
Represents an Event which is fired when a bread crumb was activated.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EventType<BreadCrumbBar.BreadCrumbActionEvent<?>>
CRUMB_ACTION
The event type that should be listened to by people interested in knowing when theselected crumb
has changed.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description BreadCrumbActionEvent(TreeItem<TE> selectedCrumb)
Creates a new event that can subsequently be fired.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TreeItem<TE>
getSelectedCrumb()
Returns the crumb which was the action target.-
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
-
CRUMB_ACTION
public static final EventType<BreadCrumbBar.BreadCrumbActionEvent<?>> CRUMB_ACTION
The event type that should be listened to by people interested in knowing when theselected crumb
has changed.
-
-