Class JTableEditActionHandler
java.lang.Object
com.inductiveautomation.ignition.designer.model.AbstractEditActionHandler
com.inductiveautomation.ignition.designer.model.CommonEditActionHandler<JTable>
com.inductiveautomation.ignition.designer.model.JTableEditActionHandler
- All Implemented Interfaces:
- EditActionHandler
An 
EditActionHandler for JTables which takes care of
 the basic Copy / Cut / Paste / Delete actions.- 
Field SummaryFields inherited from class com.inductiveautomation.ignition.designer.model.AbstractEditActionHandlerlistenerList
- 
Constructor SummaryConstructorsConstructorDescriptionJTableEditActionHandler(JTable component) Constructor for injecting theJTable
- 
Method SummaryModifier and TypeMethodDescriptionbooleancanCopy()Can this edit action handler handle the copy action, given its current selection? Note that if this andEditActionHandler.canDelete()both return true, the cut action will also be enabled.booleanCan this edit action handler handle the delete action, given its current selection? Note that if this andEditActionHandler.canCopy()both return true, the cut action will also be enabled.booleanCan this action handler handle a paste given the data flavors currently available in the clipboard?doCopy()Called when the copy action is performed.voiddoDelete()Called when the delete action is performedvoiddoPaste(Transferable clipboardContents) Called when the paste action is performedMethods inherited from class com.inductiveautomation.ignition.designer.model.CommonEditActionHandlerdoCut, getComponentMethods inherited from class com.inductiveautomation.ignition.designer.model.AbstractEditActionHandleraddChangeListener, fireChangeEvent, removeChangeListenerMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inductiveautomation.ignition.designer.model.EditActionHandlercanRename, doRename
- 
Constructor Details- 
JTableEditActionHandlerConstructor for injecting theJTable- Parameters:
- component- The- JTableto inject
- Throws:
- NullPointerException- if the provided- JTableis null
 
 
- 
- 
Method Details- 
canDeletepublic boolean canDelete()Description copied from interface:EditActionHandlerCan this edit action handler handle the delete action, given its current selection? Note that if this andEditActionHandler.canCopy()both return true, the cut action will also be enabled.- Specified by:
- canDeletein interface- EditActionHandler
- Overrides:
- canDeletein class- CommonEditActionHandler<JTable>
 
- 
canCopypublic boolean canCopy()Description copied from interface:EditActionHandlerCan this edit action handler handle the copy action, given its current selection? Note that if this andEditActionHandler.canDelete()both return true, the cut action will also be enabled.- Specified by:
- canCopyin interface- EditActionHandler
- Overrides:
- canCopyin class- CommonEditActionHandler<JTable>
 
- 
canPasteDescription copied from interface:EditActionHandlerCan this action handler handle a paste given the data flavors currently available in the clipboard?- Specified by:
- canPastein interface- EditActionHandler
- Overrides:
- canPastein class- CommonEditActionHandler<JTable>
 
- 
doDeletepublic void doDelete()Description copied from interface:EditActionHandlerCalled when the delete action is performed
- 
doCopyDescription copied from interface:EditActionHandlerCalled when the copy action is performed.- Returns:
- the current selection as a Transferable, or null if the copy failed. Will be added to the system clipboard.
 
- 
doPasteDescription copied from interface:EditActionHandlerCalled when the paste action is performed- Parameters:
- clipboardContents- The current contents of the clipboard to paste.
 
 
-