Package net.officefloor.gef.editor
Interface EditorStyler
-
- All Known Subinterfaces:
AdaptedRootBuilder<R,O>
- All Known Implementing Classes:
OfficeFloorContentPartFactory
public interface EditorStylerEnables 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 thePropertyto the style sheet rules for theScene.javafx.scene.ParentgetEditor()Obtains the rootParentfor the editor.org.eclipse.gef.mvc.fx.models.GridModelgetGridModel()Obtains theGridModelto configure the content grid.
-
-
-
Method Detail
-
getEditor
javafx.scene.Parent getEditor()
Obtains the root
Parentfor the editor.This allows for interrogating the structure of the editor.
- Returns:
- Editor
Parent.
-
getGridModel
org.eclipse.gef.mvc.fx.models.GridModel getGridModel()
Obtains theGridModelto configure the content grid.- Returns:
GridModelto configure the content grid.
-
editorStyle
javafx.beans.property.Property<java.lang.String> editorStyle()
Obtains thePropertyto the style sheet rules for theScene.- Returns:
Propertyto specify the style sheet rules for theScene.
-
-