Class PythonTextAreaEditActionHandler
java.lang.Object
com.inductiveautomation.ignition.designer.model.AbstractEditActionHandler
com.inductiveautomation.ignition.designer.model.CommonEditActionHandler<com.inductiveautomation.ignition.designer.gui.tools.PythonTextArea>
com.inductiveautomation.ignition.designer.model.PythonTextAreaEditActionHandler
- All Implemented Interfaces:
- EditActionHandler
public class PythonTextAreaEditActionHandler
extends CommonEditActionHandler<com.inductiveautomation.ignition.designer.gui.tools.PythonTextArea>
An 
EditActionHandler for PythonTextAreas which takes care of the basic Copy / Cut /
 Paste / Delete actions.- 
Field SummaryFields inherited from class com.inductiveautomation.ignition.designer.model.AbstractEditActionHandlerlistenerList
- 
Constructor SummaryConstructorsConstructorDescriptionPythonTextAreaEditActionHandler(com.inductiveautomation.ignition.designer.gui.tools.PythonTextArea component) Constructor for injecting thePythonTextArea
- 
Method SummaryModifier and TypeMethodDescriptiondoCopy()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.CommonEditActionHandlercanCopy, canDelete, canPaste, doCut, 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- 
PythonTextAreaEditActionHandlerpublic PythonTextAreaEditActionHandler(com.inductiveautomation.ignition.designer.gui.tools.PythonTextArea component) throws NullPointerException Constructor for injecting thePythonTextArea- Throws:
- NullPointerException- if the- PythonTextAreais null
 
 
- 
- 
Method Details- 
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.
 
 
-