Searched refs:ACTION_LINK (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDnDConstants.java75 public static final int ACTION_LINK = 0x40000000; field in class:DnDConstants
79 * action (synonym for ACTION_LINK).
81 public static final int ACTION_REFERENCE = ACTION_LINK;
H A DDropTargetDragEvent.java52 * Ctrl + Shift -> ACTION_LINK
66 * <code>DnDConstants.ACTION_LINK</code> and the <i>user drop action</i> is the
106 dropAction != DnDConstants.ACTION_LINK
109 if ((srcActions & ~(DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK)) != 0) throw new IllegalArgumentException("srcActions");
H A DDropTargetDropEvent.java51 * Ctrl + Shift -> ACTION_LINK
65 * <code>DnDConstants.ACTION_LINK</code> and the <i>user drop action</i> is the
112 dropAction != DnDConstants.ACTION_LINK
115 if ((srcActions & ~(DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK)) != 0) throw new IllegalArgumentException("srcActions");
H A DDragGestureRecognizer.java128 sourceActions = sa & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK);
289 sourceActions = actions & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK);
H A DDragSourceContext.java497 if ((sourceAct & DnDConstants.ACTION_LINK) == DnDConstants.ACTION_LINK)
504 if ((ra & DnDConstants.ACTION_LINK) == DnDConstants.ACTION_LINK)
H A DDragGestureEvent.java63 * <li> {@code DnDConstants.ACTION_LINK}
114 act != DnDConstants.ACTION_LINK)
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDnDConstants.java67 case DnDConstants.ACTION_LINK : return XA_XdndActionLink.getAtom();
78 return DnDConstants.ACTION_LINK;
H A DMotifDnDConstants.java596 if ((javaActions & DnDConstants.ACTION_LINK) != 0) {
613 javaActions |= DnDConstants.ACTION_LINK;
H A DXDnDDragSourceProtocol.java93 if ((actions & DnDConstants.ACTION_LINK) != 0) {
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DDnDSource.java40 private final int dragOperation = DnDConstants.ACTION_COPY | DnDConstants.ACTION_MOVE | DnDConstants.ACTION_LINK;
62 if ((ra & DnDConstants.ACTION_LINK) == DnDConstants.ACTION_LINK)
226 case DnDConstants.ACTION_LINK:
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDInOut/
H A DDnDSource.java40 private final int dragOperation = DnDConstants.ACTION_COPY | DnDConstants.ACTION_MOVE | DnDConstants.ACTION_LINK;
62 if ((ra & DnDConstants.ACTION_LINK) == DnDConstants.ACTION_LINK)
226 case DnDConstants.ACTION_LINK:
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDNegative/
H A DDnDSource.java44 private final int dragOperation = DnDConstants.ACTION_COPY | DnDConstants.ACTION_MOVE | DnDConstants.ACTION_LINK;
66 if ((ra & DnDConstants.ACTION_LINK) == DnDConstants.ACTION_LINK)
264 case DnDConstants.ACTION_LINK:
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDragSourceContextPeer.java404 * ACTION_COPY, then for ACTION_LINK and return the first operation
410 dropAction = DnDConstants.ACTION_LINK; break;
420 } else if ((supportedActions & DnDConstants.ACTION_LINK) != 0) {
421 dropAction = DnDConstants.ACTION_LINK;
H A DSunDropTargetContextPeer.java163 (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK);
258 currentDA != DnDConstants.ACTION_LINK) {
259 throw new InvalidDnDOperationException("only ACTION_LINK is permissable for transfer of java.rmi.Remote objects");
666 DnDConstants.ACTION_LINK,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java120 * @see java.awt.dnd.DnDConstants#ACTION_LINK
123 public static final int LINK = DnDConstants.ACTION_LINK;

Completed in 49 milliseconds