public void paste() {
Manifest clipboardContent = Clipboard.getContent();
if (clipboardContent != null
&& clipboardContent.containsText()) {
String json = null;
JSONSerializer jsonSerializer = new JSONSerializer();
try {
json = clipboardContent.getText();
setValue(jsonSerializer.readObject(new StringReader(json)));