Package net.officefloor.gef.editor
Interface SelectOnly
-
public interface SelectOnly
Configured into the
AdaptedEditorModule
before configuring to indicate that select only behaviour.This disables all creation of
AdaptedParent
instances and action ofAdaptedAction
instances.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 void
editor(EditorStyler editorStyler)
Notified that the editor was selected.void
model(AdaptedModelStyler modelStyler)
Model has been selected.void
palette(PaletteStyler paletteStyler)
Notified that the palette was selected.void
paletteIndicator(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
.
-
-