Class JTextComponentEditActionHandler

    • Constructor Detail

      • JTextComponentEditActionHandler

        public JTextComponentEditActionHandler​(javax.swing.text.JTextComponent component)
                                        throws java.lang.NullPointerException
        Constructor for injecting the JTextComponent
        Parameters:
        component - The JTextComponent to inject
        Throws:
        java.lang.NullPointerException - if the JTextComponent is null
    • Method Detail

      • doDelete

        public void doDelete()
        Description copied from interface: EditActionHandler
        Called when the delete action is performed
      • doCopy

        public java.awt.datatransfer.Transferable doCopy()
        Description copied from interface: EditActionHandler
        Called 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.
      • doPaste

        public void doPaste​(java.awt.datatransfer.Transferable clipboardContents)
        Description copied from interface: EditActionHandler
        Called when the paste action is performed
        Parameters:
        clipboardContents - The current contents of the clipboard to paste.