| net.refractions.udig.printing.ui.IBoxEditAction
All known Subclasses: net.refractions.udig.printing.ui.internal.editor.MapEditorAction, net.refractions.udig.printing.ui.internal.editor.RenameLabelBox,
IBoxEditAction | public interface IBoxEditAction (Code) | | Provides a UI for creating commands to edit a box's model
and creates the command for modifying the model.
author: Jesse since: 1.1.0 |
Method Summary | |
public Command | getCommand() Creates the command that will change the model. | public void | init(BoxPart owner) Initializes the box edit action. | public boolean | isDone() Called by framework to determine if the command can be executed. | public void | perform() Creates the UI for the user to make a change to the model. |
getCommand | public Command getCommand()(Code) | | Creates the command that will change the model.
the command that will change the model. |
init | public void init(BoxPart owner)(Code) | | Initializes the box edit action.
Parameters: parent - the parent composite that can be used to create the user interface. |
isDone | public boolean isDone()(Code) | | Called by framework to determine if the command can be executed.
|
perform | public void perform()(Code) | | Creates the UI for the user to make a change to the model.
DOES NOT CHANGE THE MODEL!!!!
Only the command should change the model.
|
|
|