Interface ValueRendererContext<M>
-
public interface ValueRendererContext<M>Context for theValueRenderer.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.beans.property.Property<java.lang.Boolean>dirtyProperty()Obtains the dirtyProperty.ErrorListenergetErrorListener()Obtains theErrorListener.MgetModel()Obtains the model.ActionergetOptionalActioner()Obtains theActioner.voidrefreshError()Triggered to refresh the error display.voidreload(Builder<?,?,?> builder)Triggers reloading the value for the providedBuilder.javafx.beans.property.Property<java.lang.Boolean>validProperty()Obtains the validProperty.
-
-
-
Method Detail
-
getModel
M getModel()
Obtains the model.- Returns:
- Model.
-
reload
void reload(Builder<?,?,?> builder)
Triggers reloading the value for the providedBuilder.- Parameters:
builder-Builderto identify the value to reload from the model.
-
refreshError
void refreshError()
Triggered to refresh the error display.
-
getOptionalActioner
Actioner getOptionalActioner()
Obtains theActioner.- Returns:
Actionerornullif not able to apply configuration.
-
dirtyProperty
javafx.beans.property.Property<java.lang.Boolean> dirtyProperty()
Obtains the dirtyProperty.- Returns:
- Dirty
Property.
-
validProperty
javafx.beans.property.Property<java.lang.Boolean> validProperty()
Obtains the validProperty.- Returns:
- Valid
Property.
-
getErrorListener
ErrorListener getErrorListener()
Obtains theErrorListener.- Returns:
ErrorListener.
-
-