Package adams.gui.visualization.pdf.menu
Class AbstractPDFViewerAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- adams.gui.action.AbstractBaseAction
-
- adams.gui.visualization.pdf.menu.AbstractPDFViewerAction
-
- All Implemented Interfaces:
CleanUpHandler,BaseAction,ActionListener,Serializable,Cloneable,EventListener,Action
- Direct Known Subclasses:
ToolExtractImages,ToolExtractPages,ToolExtractText
public abstract class AbstractPDFViewerAction extends AbstractBaseAction
TODO: What this class does.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected PDFViewerPanelm_Ownerthe owner.-
Fields inherited from class adams.gui.action.AbstractBaseAction
ASYNCHRONOUS
-
Fields inherited from class javax.swing.AbstractAction
changeSupport, enabled
-
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 AbstractPDFViewerAction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description PDFViewerPanelgetOwner()Returns the current owner.voidsetOwner(PDFViewerPanel value)Sets the owner.abstract voidupdate()Updates the action.-
Methods inherited from class adams.gui.action.AbstractBaseAction
actionPerformed, cleanUp, doActionPerformed, getAccelerator, getIcon, getMnemonic, getName, getToolTipText, hasAccelerator, hasIcon, hasMnemonic, hasToolTipText, initialize, isAsynchronous, isSelected, postActionPerformed, preActionPerformed, setAccelerator, setAsynchronous, setIcon, setIcon, setMnemonic, setName, setSelected, setToolTipText
-
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.swing.Action
accept, addPropertyChangeListener, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
-
-
-
Field Detail
-
m_Owner
protected PDFViewerPanel m_Owner
the owner.
-
-
Method Detail
-
setOwner
public void setOwner(PDFViewerPanel value)
Sets the owner.- Parameters:
value- the owning tool
-
getOwner
public PDFViewerPanel getOwner()
Returns the current owner.- Returns:
- the owning tool null if none set
-
update
public abstract void update()
Updates the action.
-
-