Package net.officefloor.gef.editor
Interface EditorStyler
-
- All Known Subinterfaces:
AdaptedRootBuilder<R,O>
- All Known Implementing Classes:
OfficeFloorContentPartFactory
public interface EditorStyler
Enables styling the content.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.beans.property.Property<java.lang.String>
editorStyle()
Obtains theProperty
to the style sheet rules for theScene
.javafx.scene.Parent
getEditor()
Obtains the rootParent
for the editor.org.eclipse.gef.mvc.fx.models.GridModel
getGridModel()
Obtains theGridModel
to configure the content grid.
-
-
-
Method Detail
-
getEditor
javafx.scene.Parent getEditor()
Obtains the root
Parent
for the editor.This allows for interrogating the structure of the editor.
- Returns:
- Editor
Parent
.
-
getGridModel
org.eclipse.gef.mvc.fx.models.GridModel getGridModel()
Obtains theGridModel
to configure the content grid.- Returns:
GridModel
to configure the content grid.
-
editorStyle
javafx.beans.property.Property<java.lang.String> editorStyle()
Obtains theProperty
to the style sheet rules for theScene
.- Returns:
Property
to specify the style sheet rules for theScene
.
-
-