edu.princeton.swing
public interface ClipboardTarget
ClipboardTargetManager| Modifier and Type | Method and Description | 
|---|---|
| boolean | canCopy()Returns wheter or not the copy operation can be performed on this ClipboardTarget. | 
| boolean | canCut()Returns wheter or not the cut operation can be performed on this ClipboardTarget. | 
| boolean | canPaste()Returns wheter or not the paste operation can be performed on this ClipboardTarget. | 
| boolean | canSelectAll()Returns wheter or not the selectAll operation can be performed on this ClipboardTarget. | 
| void | copy()Copies the selection to the clipboard. | 
| void | cut()Copies the selection to the clipboard and remove it from the object. | 
| void | paste()Inserts the contents of the clipbaord into the object. | 
| void | selectAll()Selects everything in the object. | 
boolean canCut()
void cut()
boolean canCopy()
void copy()
boolean canPaste()
void paste()
boolean canSelectAll()
void selectAll()