Class DefaultFlyoutPalettePreferences
- java.lang.Object
-
- org.eclipse.graphiti.ui.internal.editor.DefaultFlyoutPalettePreferences
-
- All Implemented Interfaces:
org.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences
public class DefaultFlyoutPalettePreferences extends java.lang.Object implements org.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferencesThis class is a simple container for the preferences fo the FlyoutPalette.
-
-
Field Summary
Fields Modifier and Type Field Description protected int_dockLocationThe _dock location.protected int_paletteStateThe _palette state.protected int_paletteWidthThe _palette width.
-
Constructor Summary
Constructors Constructor Description DefaultFlyoutPalettePreferences()Creates a new DefaultFlyoutPalettePreferences.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidafterSetValue()Is called in every set-method for one of the preference-values after the value was set.protected voidbeforeGetValue()Is called in every get-method for one of the preference-values before the value is returned.intgetDockLocation()Returns the dock location.intgetPaletteState()Returns the palette state.intgetPaletteWidth()Returns the palette width.voidsetDockLocation(int dockLocation)Sets the dock location.voidsetPaletteState(int paletteState)Sets the palette state.voidsetPaletteWidth(int paletteWidth)Sets the palette width.
-
-
-
Method Detail
-
getDockLocation
public final int getDockLocation()
Returns the dock location.- Specified by:
getDockLocationin interfaceorg.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences- Returns:
- The dock location.
-
setDockLocation
public final void setDockLocation(int dockLocation)
Sets the dock location.- Specified by:
setDockLocationin interfaceorg.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences- Parameters:
dockLocation- The dock location to set.
-
getPaletteState
public final int getPaletteState()
Returns the palette state.- Specified by:
getPaletteStatein interfaceorg.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences- Returns:
- The palette state.
-
setPaletteState
public final void setPaletteState(int paletteState)
Sets the palette state.- Specified by:
setPaletteStatein interfaceorg.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences- Parameters:
paletteState- The palette state to set.
-
getPaletteWidth
public final int getPaletteWidth()
Returns the palette width.- Specified by:
getPaletteWidthin interfaceorg.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences- Returns:
- The palette width.
-
setPaletteWidth
public final void setPaletteWidth(int paletteWidth)
Sets the palette width.- Specified by:
setPaletteWidthin interfaceorg.eclipse.gef.ui.palette.FlyoutPaletteComposite.FlyoutPreferences- Parameters:
paletteWidth- The palette width to set.
-
beforeGetValue
protected void beforeGetValue()
Is called in every get-method for one of the preference-values before the value is returned. This method can be overwritten to load the values from a persistent storage.By default this method does nothing.
-
afterSetValue
protected void afterSetValue()
Is called in every set-method for one of the preference-values after the value was set. This method can be overwritten to save the values to a persistent storage.By default this method does nothing.
-
-