WebRenderer has some useful Clipboard methods adding Copy,
Cut and Paste functionality. The following
is an example usage of these methods.
//Creating the browser IBrowserCanvas
browser = BrowserFactory.spawnMozilla();
//Copy
selected item or text browser.copy();
//Cut
a selected item or text browser.cut();
//Paste
item from the clipboard browser.paste();
Accessing
data placed on the Clipboard
Accessing data placed on the Clipboard by WebRenderer
is the same as accessing any data on the
Clipboard. The java.awt.datatransfer package
is used to access data on the clipboard.
Please see the J2SE API for more information.