org.zaval.lw
Class AWTClipboardMan
java.lang.Object
|
+--org.zaval.lw.LwClipboardMan
|
+--org.zaval.lw.AWTClipboardMan
- All Implemented Interfaces:
- LwManager
- public class AWTClipboardMan
- extends LwClipboardMan
This class implements simple clipboard manager that is based on Java AWT clipboard. The clipboard
provides ability to share data among light weight components and system UI components.
|
Method Summary |
java.lang.Object |
get()
Gets the content of the clipboard. |
void |
put(java.lang.Object o)
Sets the specified content for the clipboard. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AWTClipboardMan
public AWTClipboardMan()
get
public java.lang.Object get()
- Description copied from class:
LwClipboardMan
- Gets the content of the clipboard.
- Overrides:
get in class LwClipboardMan
- Following copied from class:
org.zaval.lw.LwClipboardMan
- Returns:
- a content. Returns
null if the clipboard is empty.
put
public void put(java.lang.Object o)
- Description copied from class:
LwClipboardMan
- Sets the specified content for the clipboard.
- Overrides:
put in class LwClipboardMan
- Following copied from class:
org.zaval.lw.LwClipboardMan
- Parameters:
o - the specified content.
|