Searched refs:Transferable (Results 1 - 25 of 60) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DClipboardOwner.java54 public void lostOwnership(Clipboard clipboard, Transferable contents);
H A DTransferable.java42 public interface Transferable { interface
H A DClipboard.java59 protected Transferable contents;
120 public synchronized void setContents(Transferable contents, ClipboardOwner owner) {
122 final Transferable oldContents = this.contents;
151 public synchronized Transferable getContents(Object requestor) {
170 Transferable cntnts = getContents(null);
197 Transferable cntnts = getContents(null);
232 Transferable cntnts = getContents(null);
345 Transferable contents = getContents(null);
H A DStringSelection.java31 * A <code>Transferable</code> which implements the capability required
34 * This <code>Transferable</code> properly supports
44 public class StringSelection implements Transferable, ClipboardOwner {
57 * Creates a <code>Transferable</code> capable of transferring
65 * Returns an array of flavors in which this <code>Transferable</code>
82 * <code>Transferable</code>.
102 * Returns the <code>Transferable</code>'s data in the requested
138 public void lostOwnership(Clipboard clipboard, Transferable contents) {
/openjdk7/jdk/src/share/classes/java/awt/dnd/peer/
H A DDropTargetContextPeer.java29 import java.awt.datatransfer.Transferable;
73 Transferable getTransferable() throws InvalidDnDOperationException;
76 * @return if the DragSource Transferable is in the same JVM as the Target
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTargetContext.java31 import java.awt.datatransfer.Transferable;
214 * <code>Transferable</code> operand of this operation.
218 * <code>Transferable</code> operand.
228 * of the <code>Transferable</code> operand
254 * get the Transferable (proxy) operand of this operation
258 * @return the <code>Transferable</code>
261 protected Transferable getTransferable() throws InvalidDnDOperationException {
267 Transferable t = peer.getTransferable();
292 * Transferable.
294 * @param t the <tt>Transferable</t
[all...]
H A DDropTargetDragEvent.java31 import java.awt.datatransfer.Transferable;
181 * This method returns the Transferable object that represents
184 * @return the Transferable associated with the drag operation
190 public Transferable getTransferable() {
H A DDropTargetDropEvent.java31 import java.awt.datatransfer.Transferable;
217 * This method returns the <code>Transferable</code> object
220 * @return the <code>Transferable</code> associated with the drop
223 public Transferable getTransferable() {
H A DDragSourceContext.java34 import java.awt.datatransfer.Transferable;
52 * {@link Transferable} representing the source data for the drag operation.
133 * triggering event, the <code>Transferable</code> subject data, and the
151 * If <code>Transferable</code> is <code>null</code>
166 * @param t the <code>Transferable</code>
183 Image dragImage, Point offset, Transferable t,
211 throw new NullPointerException("Transferable");
339 * Notifies the peer that the <code>Transferable</code>'s
455 * Returns the <code>Transferable</code> associated with
458 * @return the <code>Transferable</cod
[all...]
H A DDragGestureEvent.java37 import java.awt.datatransfer.Transferable;
211 * operation and the <code>Transferable</code> representing the source data
217 * If a <code>null</code> <code>Transferable</code> is specified
225 * @param transferable The <code>Transferable</code> representing the source
232 * @throws NullPointerException if the {@code Transferable} is {@code null}
235 public void startDrag(Cursor dragCursor, Transferable transferable)
242 * the <code>Transferable</code> object,
251 * @param transferable The source's Transferable
261 public void startDrag(Cursor dragCursor, Transferable transferable, DragSourceListener dsl) throws InvalidDnDOperationException {
269 * the <code>Transferable</cod
[all...]
H A DDragSource.java37 import java.awt.datatransfer.Transferable;
270 * the <code>Transferable</code> subject data
297 Transferable transferable,
332 * the <code>Transferable</code> subject data
355 Transferable transferable,
394 Transferable transferable,
404 * the <code>Transferable</code> subject data
424 Transferable transferable,
476 protected DragSourceContext createDragSourceContext(DragSourceContextPeer dscp, DragGestureEvent dgl, Cursor dragCursor, Image dragImage, Point imageOffset, Transferable t, DragSourceListener dsl) {
/openjdk7/jdk/test/java/awt/datatransfer/DragUnicodeBetweenJVMTest/
H A DFileListTransferable.java24 import java.awt.datatransfer.Transferable;
32 class FileListTransferable implements Transferable {
/openjdk7/jdk/test/java/awt/dnd/FileListBetweenJVMsTest/
H A DFileListTransferable.java24 import java.awt.datatransfer.Transferable;
30 class FileListTransferable implements Transferable {
/openjdk7/jdk/test/java/awt/dnd/URIListBetweenJVMsTest/
H A DFileListTransferable.java24 import java.awt.datatransfer.Transferable;
30 class FileListTransferable implements Transferable {
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DSunClipboard.java33 import java.awt.datatransfer.Transferable;
93 public synchronized void setContents(Transferable contents,
104 final Transferable oldContents = this.contents;
143 public synchronized Transferable getContents(Object requestor) {
156 private synchronized Transferable getContextContents() {
167 Transferable cntnts = getContextContents();
187 Transferable cntnts = getContextContents();
207 Transferable cntnts = getContextContents();
214 Transferable localeTransferable = null;
247 protected Transferable createLocaleTransferabl
[all...]
H A DClipboardTransferable.java29 import java.awt.datatransfer.Transferable;
57 public class ClipboardTransferable implements Transferable {
H A DTransferableProxy.java29 import java.awt.datatransfer.Transferable;
50 * Proxies for another Transferable so that Serializable objects are never
59 public class TransferableProxy implements Transferable {
60 public TransferableProxy(Transferable t, boolean local) {
101 protected final Transferable transferable;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DStringTransferable.java35 class StringTransferable implements Transferable {
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWClipboard.java29 import java.awt.datatransfer.Transferable;
65 protected void setContentsNative(Transferable contents) {
67 // Don't use delayed Clipboard rendering for the Transferable's data.
68 // If we did that, we would call Transferable.getTransferData on
71 // Get all of the target formats into which the Transferable can be
181 protected Transferable createLocaleTransferable(long[] formats) throws IOException {
202 return new Transferable() {
H A DWDragSourceContextPeer.java35 import java.awt.datatransfer.Transferable;
79 protected void startDrag(Transferable trans,
152 Transferable transferable,
/openjdk7/jdk/test/java/awt/DataFlavor/MissedHtmlAndRtfBug/
H A DMyTransferable.java27 class MyTransferable implements Transferable {
H A DTargetPanel.java1 import java.awt.datatransfer.Transferable;
53 Transferable t = dtde.getTransferable();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceProtocol.java28 import java.awt.datatransfer.Transferable;
86 public final void initializeDrag(int actions, Transferable contents,
112 Transferable contents,
/openjdk7/jdk/test/sun/awt/datatransfer/
H A DSuplementaryCharactersTransferTest.java64 static class ByteTransferable implements Transferable, ClipboardOwner {
101 public void lostOwnership(Clipboard clipboard, Transferable contents) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCClipboard.java55 protected void setContentsNative(Transferable contents) {
57 // Don't use delayed Clipboard rendering for the Transferable's data.
58 // If we did that, we would call Transferable.getTransferData on
61 // Get all of the target formats into which the Transferable can be
109 //protected Transferable createLocaleTransferable(long[] formats) throws IOException;

Completed in 320 milliseconds

123