Package net.officefloor.gef.editor
Interface SelectOnly
-
public interface SelectOnlyConfigured into the
AdaptedEditorModulebefore configuring to indicate that select only behaviour.This disables all creation of
AdaptedParentinstances and action ofAdaptedActioninstances.Targeted use of this is to enable styling of the editor by selecting various aspects of the editor.
- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voideditor(EditorStyler editorStyler)Notified that the editor was selected.voidmodel(AdaptedModelStyler modelStyler)Model has been selected.voidpalette(PaletteStyler paletteStyler)Notified that the palette was selected.voidpaletteIndicator(PaletteIndicatorStyler paletteIndiatorStyler)Notified that the palette indicator was selected.
-
-
-
Method Detail
-
paletteIndicator
void paletteIndicator(PaletteIndicatorStyler paletteIndiatorStyler)
Notified that the palette indicator was selected.- Parameters:
paletteIndiatorStyler-PaletteIndicatorStyler.
-
palette
void palette(PaletteStyler paletteStyler)
Notified that the palette was selected.- Parameters:
paletteStyler-PaletteStyler.
-
editor
void editor(EditorStyler editorStyler)
Notified that the editor was selected.- Parameters:
editorStyler-EditorStyler.
-
model
void model(AdaptedModelStyler modelStyler)
Model has been selected.- Parameters:
modelStyler-AdaptedModelStyler.
-
-