Class JTextComponentEditActionHandler
- java.lang.Object
- 
- com.inductiveautomation.ignition.designer.model.AbstractEditActionHandler
- 
- com.inductiveautomation.ignition.designer.model.CommonEditActionHandler<javax.swing.text.JTextComponent>
- 
- com.inductiveautomation.ignition.designer.model.JTextComponentEditActionHandler
 
 
 
- 
- All Implemented Interfaces:
- EditActionHandler
 
 public class JTextComponentEditActionHandler extends CommonEditActionHandler<javax.swing.text.JTextComponent> AnEditActionHandlerforJTextComponentswhich takes care of the basic Copy / Cut / Paste / Delete actions.
- 
- 
Field Summary- 
Fields inherited from class com.inductiveautomation.ignition.designer.model.AbstractEditActionHandlerlistenerList
 
- 
 - 
Constructor SummaryConstructors Constructor Description JTextComponentEditActionHandler(javax.swing.text.JTextComponent component)Constructor for injecting theJTextComponent
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.datatransfer.TransferabledoCopy()Called when the copy action is performed.voiddoDelete()Called when the delete action is performedvoiddoPaste(java.awt.datatransfer.Transferable clipboardContents)Called when the paste action is performed- 
Methods inherited from class com.inductiveautomation.ignition.designer.model.CommonEditActionHandlercanCopy, canDelete, canPaste, doCut, getComponent
 - 
Methods inherited from class com.inductiveautomation.ignition.designer.model.AbstractEditActionHandleraddChangeListener, fireChangeEvent, removeChangeListener
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.inductiveautomation.ignition.designer.model.EditActionHandlercanRename, doRename
 
- 
 
- 
- 
- 
Constructor Detail- 
JTextComponentEditActionHandlerpublic JTextComponentEditActionHandler(javax.swing.text.JTextComponent component) throws java.lang.NullPointerExceptionConstructor for injecting theJTextComponent- Parameters:
- component- The- JTextComponentto inject
- Throws:
- java.lang.NullPointerException- if the- JTextComponentis null
 
 
- 
 - 
Method Detail- 
doDeletepublic void doDelete() Description copied from interface:EditActionHandlerCalled when the delete action is performed
 - 
doCopypublic java.awt.datatransfer.Transferable doCopy() Description 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.
 
 - 
doPastepublic void doPaste(java.awt.datatransfer.Transferable clipboardContents) Description copied from interface:EditActionHandlerCalled when the paste action is performed- Parameters:
- clipboardContents- The current contents of the clipboard to paste.
 
 
- 
 
-