: Download: FAQ: Licensing: Support: Contact ME
LwVCL Home
Introduction
Overview
Screen Shots
On-line Demos
Requirements
Further Plans
Docs
Tutorial
How-to (PDF)
API
FAQ
Download
Latest version

Home > J2SE > API

Overview  Package   Class  Tree  Deprecated  Index  Help 

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.


Constructor Summary
AWTClipboardMan()
           
 
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 org.zaval.lw.LwClipboardMan
dispose
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AWTClipboardMan

public AWTClipboardMan()
Method Detail

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.


: up