Lines Matching refs:clipboard

59  * to/from a clipboard.  It is also used in drag-and-drop operations
72 * one component to another either via the clipboard or a drag and drop operation
97 * This value is used when data is copied to a clipboard
104 * This value is used when data is moved to a clipboard (i.e. a cut)
194 * This class encapsulates all relevant details of a clipboard
585 * clipboard. When performed, this action operates on the {@code JComponent}
589 * @return an {@code Action} for performing cuts to the clipboard
597 * clipboard. When performed, this action operates on the {@code JComponent}
601 * @return an {@code Action} for performing copies to the clipboard
609 * clipboard. When performed, this action operates on the {@code JComponent}
611 * with the clipboard contents, on the component's {@code TransferHandler}.
613 * @return an {@code Action} for performing pastes from the clipboard
622 * from one component to another via the clipboard or a drag and drop
752 * given clipboard. This method is called by the default cut and
759 * returns. Should the clipboard be unavailable when attempting to place
768 * @param clip the clipboard to transfer the data into
775 * @throws IllegalStateException if the clipboard is currently unavailable
801 * Causes a transfer to occur from a clipboard or a drag and
832 * Causes a transfer to a component from a clipboard or a
994 * representing the transfer in a clipboard implementation that has a visual
1734 Clipboard clipboard = getClipboard(c);
1741 if ((clipboard != null) && (th != null) && (name != null)) {
1743 th.exportToClipboard(c, clipboard, MOVE);
1745 th.exportToClipboard(c, clipboard, COPY);
1747 trans = clipboard.getContents(null);
1751 // clipboard was unavailable
1764 * Returns the clipboard to use for cut/copy/paste.
1770 Clipboard clipboard = (Clipboard)sun.awt.AppContext.getAppContext().
1772 if (clipboard == null) {
1773 clipboard = new Clipboard("Sandboxed Component Clipboard");
1775 clipboard);
1777 return clipboard;
1782 * System clipboard is denied.