Examples of ColorTransferable


Examples of net.cakenet.jsaton.model.clipboard.ColorTransferable

    }

    public void addSnippet(Object o) {
        Transferable tr;
        if (o instanceof Color)
            tr = new ColorTransferable((Color) o);
        else if (o instanceof Image)
            tr = new SimpleImageTransferable(SimpleImage.fromImage((Image) o));
        else
            tr = new StringSelection(String.valueOf(o));
        Clipboard clip = getToolkit().getSystemClipboard();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.