Package org.graffiti.editor.actions
Class FileSaveAction
java.lang.Object
javax.swing.AbstractAction
org.graffiti.plugin.actions.GraffitiAction
org.graffiti.editor.actions.FileSaveAction
- All Implemented Interfaces:
ActionListener
,Serializable
,Cloneable
,EventListener
,Action
public class FileSaveAction extends GraffitiAction
The action for saving a graph.
- Version:
- $Revision: 1.15.2.1 $
- 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 FileSaveAction(MainFrame mainFrame, IOManager ioManager, SessionManager sessionManager)
Creates a new FileSaveAction object. -
Method Summary
Modifier and Type Method Description void
actionPerformed(ActionEvent e)
DOCUMENT ME!static String
getFileExt(String fileName)
DOCUMENT ME!HelpContext
getHelpContext()
Returns the help context for this action.boolean
isEnabled()
DOCUMENT ME!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
-
FileSaveAction
Creates a new FileSaveAction object.- Parameters:
mainFrame
- DOCUMENT ME!ioManager
- DOCUMENT ME!sessionManager
- DOCUMENT ME!
-
-
Method Details
-
isEnabled
public boolean isEnabled()DOCUMENT ME!- Specified by:
isEnabled
in interfaceAction
- Specified by:
isEnabled
in classGraffitiAction
- Returns:
true
, if the io manager contains a working output serializer and if the file is writeable.
-
getHelpContext
Description copied from class:GraffitiAction
Returns the help context for this action.- Overrides:
getHelpContext
in classGraffitiAction
- Returns:
- the help context for this action.
- See Also:
GraffitiAction.getHelpContext()
-
actionPerformed
DOCUMENT ME!- Parameters:
e
- DOCUMENT ME!
-
getFileExt
DOCUMENT ME!- Parameters:
fileName
-- Returns:
- Returns file extension from a given filename.
-