Created
October 12, 2012 00:19
-
-
Save johnistan/3876583 to your computer and use it in GitHub Desktop.
GWT onPaste function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void onPaste(String newImageData ){ | |
Log.debug("paste in java!!!!"); | |
Image newImageWidget = new Image(); | |
newImageWidget.setVisible(true); | |
newImageWidget.setUrl(newImageData); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment