Package org.graffiti.editor.actions
Class CopyAction
java.lang.Object
javax.swing.AbstractAction
org.graffiti.plugin.actions.GraffitiAction
org.graffiti.plugin.actions.SelectionAction
org.graffiti.editor.actions.CopyAction
- All Implemented Interfaces:
ActionListener
,Serializable
,Cloneable
,EventListener
,Action
public class CopyAction extends SelectionAction
Represents a graph element copy action.
- Version:
- $Revision: 1.10 $
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from interface javax.swing.Action
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON
-
Constructor Summary
Constructors Constructor Description CopyAction(MainFrame mainFrame)
Constructs a new copy action. -
Method Summary
Modifier and Type Method Description void
actionPerformed(ActionEvent e)
Executes this action.static void
doCopyGraph(Graph sourceGraph, Selection selection)
static void
doCopyGraphMethodImproved(Graph sourceGraph, Selection selection)
static Graph
doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard)
static Graph
doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard, OutputSerializer os)
HelpContext
getHelpContext()
Returns the help context for the action.boolean
isEnabled()
Returnstrue
, if this action is enabled.Methods inherited from class org.graffiti.plugin.actions.SelectionAction
getSelectedItems, getSelection, surviveFocusChange
Methods inherited from class org.graffiti.plugin.actions.GraffitiAction
getName, performAction, setEnabled, update, updateAllActions
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, getKeys, getPropertyChangeListeners, getValue, putValue, removePropertyChangeListener
-
Constructor Details
-
CopyAction
Constructs a new copy action.- Parameters:
mainFrame
- DOCUMENT ME!
-
-
Method Details
-
getHelpContext
Returns the help context for the action.- Overrides:
getHelpContext
in classGraffitiAction
- Returns:
- HelpContext, the help context for the action
-
actionPerformed
Executes this action.- Parameters:
e
- DOCUMENT ME!
-
doCopyGraph
-
doCopyGraphMethodImproved
-
doCopyGraphMethodImproved
-
doCopyGraphMethodImproved
public static Graph doCopyGraphMethodImproved(Graph sourceGraph, Selection selection, boolean returnGraphInsteadPastingInClipboard, OutputSerializer os) throws IOException- Throws:
IOException
-
isEnabled
public boolean isEnabled()Description copied from class:GraffitiAction
Returnstrue
, if this action is enabled.- Specified by:
isEnabled
in interfaceAction
- Specified by:
isEnabled
in classSelectionAction
- Returns:
true
, if this action is enabled.
-