Class ShowViewCenterPlugIn
- java.lang.Object
-
- com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
-
- org.openjump.core.ui.plugin.view.showcenter.ShowViewCenterPlugIn
-
- All Implemented Interfaces:
EnableChecked
,Iconified
,PlugIn
,Recordable
,ShortcutEnabled
public class ShowViewCenterPlugIn extends AbstractPlugIn
- initializes renderplugin - plugin calculates the actual scale and draws the text (and a white rectangle around) in the map window all things are done in ShowScaleRenderer- Author:
- sstein
-
-
Field Summary
Fields Modifier and Type Field Description static String
COLOR
static JComboBox<Color>
colorBox
static String
DIMENSION
static SpinnerModel
dimensionModel
static JSpinner
dimensionSpinner
static String
NAME
static JRadioButtonMenuItem
radio_button
static JRadioButtonMenuItem
radio_button_2
static JRadioButtonMenuItem
radio_button_3
-
Fields inherited from class com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
shortcutKeys, shortcutModifiers
-
-
Constructor Summary
Constructors Constructor Description ShowViewCenterPlugIn()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MultiEnableCheck
createEnableCheck(WorkbenchContext workbenchContext)
boolean
execute(PlugInContext context)
Execute the PlugIn.String
getName()
Returns a very brief description of this PlugIn e.g.void
initialize(PlugInContext context)
Called when Workbench starts up to allow plugins to initialize themselves.-
Methods inherited from class com.vividsolutions.jump.workbench.plugin.AbstractPlugIn
addParameter, createName, execute, execute, getBooleanParam, getContext, getDoubleParam, getEnableCheck, getIcon, getIcon, getIcon, getIntegerParam, getParameter, getParameters, getShortcutKeys, getShortcutKeyStroke, getShortcutModifiers, getStringParam, getWorkbenchContext, isRollingBackInvalidEdits, isShortcutEnabled, reportNothingToUndoYet, setParameters, setShortcutKeys, setShortcutModifiers, toActionListener, toString
-
-
-
-
Field Detail
-
NAME
public static String NAME
-
DIMENSION
public static String DIMENSION
-
COLOR
public static String COLOR
-
radio_button
public static JRadioButtonMenuItem radio_button
-
radio_button_2
public static JRadioButtonMenuItem radio_button_2
-
radio_button_3
public static JRadioButtonMenuItem radio_button_3
-
dimensionSpinner
public static JSpinner dimensionSpinner
-
dimensionModel
public static SpinnerModel dimensionModel
-
-
Method Detail
-
execute
public boolean execute(PlugInContext context) throws Exception
Description copied from class:AbstractPlugIn
Execute the PlugIn.- Specified by:
execute
in interfacePlugIn
- Overrides:
execute
in classAbstractPlugIn
- Parameters:
context
- context of this PlugIn- Returns:
- true if the PlugIn has been executed
- Throws:
Exception
- if an Exception occurs during execution- See Also:
ThreadedPlugIn
-
initialize
public void initialize(PlugInContext context) throws Exception
Description copied from interface:PlugIn
Called when Workbench starts up to allow plugins to initialize themselves.- Specified by:
initialize
in interfacePlugIn
- Overrides:
initialize
in classAbstractPlugIn
- Parameters:
context
- context of the PlugIn- Throws:
Exception
- if an exception occur during initialization
-
createEnableCheck
public static MultiEnableCheck createEnableCheck(WorkbenchContext workbenchContext)
-
getName
public String getName()
Description copied from interface:PlugIn
Returns a very brief description of this PlugIn e.g. for display as a menu item- Specified by:
getName
in interfacePlugIn
- Overrides:
getName
in classAbstractPlugIn
- Returns:
- the class name, minus "PlugIn", with spaces inserted at the appropriate point before each uppercase+lowercase and lowercase+uppercase combination.
-
-