Interface ChoiceValueInput<M>
-
- All Superinterfaces:
ValueInput
public interface ChoiceValueInput<M> extends ValueInput
ValueInput
allowing for rendering choice of followingValueInput
instances.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.beans.property.ReadOnlyProperty<java.lang.Integer>
getChoiceIndex()
Obtains the index into choiceValueRenderer
listing to display.java.util.function.Supplier<ValueRendererFactory<M,? extends ValueInput>[]>[]
getChoiceValueRendererFactories()
Obtains the array ofValueRendererFactory
instances.-
Methods inherited from interface net.officefloor.gef.configurer.internal.ValueInput
activate, getNode, reload
-
-
-
-
Method Detail
-
getChoiceValueRendererFactories
java.util.function.Supplier<ValueRendererFactory<M,? extends ValueInput>[]>[] getChoiceValueRendererFactories()
Obtains the array ofValueRendererFactory
instances.- Returns:
- Array of
ValueRendererFactory
instances.
-
getChoiceIndex
javafx.beans.property.ReadOnlyProperty<java.lang.Integer> getChoiceIndex()
Obtains the index into choiceValueRenderer
listing to display.- Returns:
- Index into choice
ValueRenderer
listing to display.
-
-