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
.ErrorListener
getErrorListener()
Obtains theErrorListener
.M
getModel()
Obtains the model.Actioner
getOptionalActioner()
Obtains theActioner
.void
refreshError()
Triggered to refresh the error display.void
reload(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
-Builder
to identify the value to reload from the model.
-
refreshError
void refreshError()
Triggered to refresh the error display.
-
getOptionalActioner
Actioner getOptionalActioner()
Obtains theActioner
.- Returns:
Actioner
ornull
if 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
.
-
-