org.merlotxml.merlot
Interface MerlotTransferableListener

All Known Implementing Classes:
XMLEditorDoc

public interface MerlotTransferableListener

This interface allows for certain operations like cut, copy, paste, etc. to be performed at the top level (the XMLEditorFrame) and be passed on to the correct internal frame that needs to handle it. This is so we don't have a myriad of actions to enable/disable when the all do basically the same thing.


Method Summary
 void copy(java.awt.event.ActionEvent ev)
           
 void cut(java.awt.event.ActionEvent evt)
           
 void paste(java.awt.event.ActionEvent evt)
          requests a transferable object be pasted
 

Method Detail

paste

public void paste(java.awt.event.ActionEvent evt)
requests a transferable object be pasted


cut

public void cut(java.awt.event.ActionEvent evt)

copy

public void copy(java.awt.event.ActionEvent ev)