Examples of exportToClipboard()


Examples of javax.swing.TransferHandler.exportToClipboard()

    @Override
    public void copy() {
        TransferHandler handler = imageLabel.getTransferHandler();
        Clipboard systemClipboard = Toolkit.getDefaultToolkit().getSystemClipboard();

        handler.exportToClipboard(imageLabel, systemClipboard,
            TransferHandler.COPY);
    }

}
View Full Code Here

Examples of javax.swing.TransferHandler.exportToClipboard()

     */
    public void copySelectedToClipboard() {
        final TransferHandler handler = resultsOutline.getTransferHandler();
        final Toolkit tk = Toolkit.getDefaultToolkit();
        final Clipboard clipboard = tk.getSystemClipboard();
        handler.exportToClipboard(resultsOutline, clipboard, TransferHandler.COPY);
    }
   
    /**
     * @return the results outline
     */
 
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.