Package net.officefloor.gef.configurer
Interface Configuration
-
public interface Configuration
Configured configuration.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.beans.property.Property<java.lang.Boolean>
dirtyProperty()
Indicates if configuration has been changed.Actioner
getActioner()
Obtains theActioner
for the configurationjavafx.scene.Node
getConfigurationNode()
Obtains theNode
containing the configuration.java.lang.String
getTitle()
Obtains the title.javafx.beans.property.Property<java.lang.Boolean>
validProperty()
Indicates if the configuration is valid.
-
-
-
Method Detail
-
getConfigurationNode
javafx.scene.Node getConfigurationNode()
Obtains theNode
containing the configuration.- Returns:
Node
containing the configuration.
-
getTitle
java.lang.String getTitle()
Obtains the title.- Returns:
- Title.
-
dirtyProperty
javafx.beans.property.Property<java.lang.Boolean> dirtyProperty()
Indicates if configuration has been changed.- Returns:
Property
to indicate if the configuration has been changed.
-
validProperty
javafx.beans.property.Property<java.lang.Boolean> validProperty()
Indicates if the configuration is valid.- Returns:
ReadOnlyProperty
to indicate if the configuration is valid.
-
-