Searched defs:srcActions (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTargetDragEvent.java88 * @param srcActions The source drop actions
93 * @throws <code>IllegalArgumentException</code> if srcActions is not
98 public DropTargetDragEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions) { argument
109 if ((srcActions & ~(DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK)) != 0) throw new IllegalArgumentException("srcActions");
112 actions = srcActions;
201 * from the srcActions other than the one selected by
H A DDropTargetDropEvent.java93 * @param srcActions the source drop actions.
99 * @throws <code>IllegalArgumentException</code> if srcActions is not
104 public DropTargetDropEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions) { argument
115 if ((srcActions & ~(DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_LINK)) != 0) throw new IllegalArgumentException("srcActions");
118 actions = srcActions;
136 * @param srcActions the source drop actions.
143 * @throws <code>IllegalArgumentException</code> if srcActions is not
148 public DropTargetDropEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions, boolean isLocal) { argument
149 this(dtc, cursorLocn, dropAction, srcActions);
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java243 int srcActions, DragGestureListener dgl)
241 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
H A DHeadlessToolkit.java265 int srcActions, DragGestureListener dgl)
263 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java728 int srcActions = getSourceActions(comp);
735 || (srcActions & action) == 0) {
744 recognizer.gestured(comp, (MouseEvent)e, srcActions, action);
1657 void gestured(JComponent c, MouseEvent e, int srcActions, int action) { argument
1659 setSourceActions(srcActions);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DLWCToolkit.java598 public <T extends DragGestureRecognizer> T createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) { argument
603 dgr = new CMouseDragGestureRecognizer(ds, c, srcActions, dgl);
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java526 DragSource ds, Component c, int srcActions,
530 // return (T)new MMouseDragGestureRecognizer(ds, c, srcActions, dgl);
525 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java1751 * @param srcActions The actions permitted for the gesture
1760 DragSource ds, Component c, int srcActions,
1759 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java775 DragSource ds, Component c, int srcActions,
779 return (T)new WMouseDragGestureRecognizer(ds, c, srcActions, dgl);
774 createDragGestureRecognizer(Class<T> abstractRecognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java886 int srcActions,
890 return (T)new XMouseDragGestureRecognizer(ds, c, srcActions, dgl);
883 createDragGestureRecognizer(Class<T> recognizerClass, DragSource ds, Component c, int srcActions, DragGestureListener dgl) argument

Completed in 65 milliseconds