Package net.officefloor.gef.configurer
Interface Configuration
-
public interface ConfigurationConfigured 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.ActionergetActioner()Obtains theActionerfor the configurationjavafx.scene.NodegetConfigurationNode()Obtains theNodecontaining the configuration.java.lang.StringgetTitle()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 theNodecontaining the configuration.- Returns:
Nodecontaining 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:
Propertyto indicate if the configuration has been changed.
-
validProperty
javafx.beans.property.Property<java.lang.Boolean> validProperty()
Indicates if the configuration is valid.- Returns:
ReadOnlyPropertyto indicate if the configuration is valid.
-
-