Interface ValueInput
-
- All Known Subinterfaces:
ChoiceValueInput<M>
,OptionalValueInput<M>
- All Known Implementing Classes:
ClassBuilderImpl.ClassValueInput
,ResourceBuilderImpl.ResourceValueInput
public interface ValueInput
Value input.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
activate()
Invoked onceNode
is connected to theScene
.javafx.scene.Node
getNode()
Obtains theNode
for the input.default void
reload()
Invoked on reload ofBuilder
.
-
-
-
Method Detail
-
getNode
javafx.scene.Node getNode()
Obtains theNode
for the input.- Returns:
Node
for the input.
-
activate
default void activate()
Invoked once
Node
is connected to theScene
.This allows
Scene
based activation of theNode
(e.g. configuring a style sheet).
-
reload
default void reload()
Invoked on reload ofBuilder
. This allows hooking in to changing view on reload.
-
-