Class VFXContainerEvent
java.lang.Object
java.util.EventObject
javafx.event.Event
io.github.palexdev.virtualizedfx.events.VFXContainerEvent
- All Implemented Interfaces:
Serializable,Cloneable
Custom event implementation to be used with
VFXContainers. Event-based systems are very useful for loose coupling,
because it allows components to communicate with each other without needing to know the specifics of their implementations.
This mechanism should be used only when there are no other reasonable ways as the performance implications of this system are not very clear.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EventType<VFXContainerEvent> This event type can be used to tell cells to forcefully update.Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionVFXContainerEvent(Object source, EventTarget target, EventType<? extends Event> eventType) -
Method Summary
Methods inherited from class javafx.event.Event
clone, consume, copyFor, fireEvent, getEventType, getTarget, isConsumedMethods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
UPDATE
This event type can be used to tell cells to forcefully update. Especially useful when the model's data does not use JavaFX's properties.- See Also:
-
-
Constructor Details
-
VFXContainerEvent
-
-
Method Details
-
update
-