Lines Matching defs:action

37  * The <code>DragSourceDragEvent</code> reports the <i>target drop action</i>
38 * and the <i>user drop action</i> that reflect the current state of
41 * <i>Target drop action</i> is one of <code>DnDConstants</code> that represents
42 * the drop action selected by the current drop target if this drop action is
44 * drop action is not supported by the drag source.
46 * <i>User drop action</i> depends on the drop actions supported by the drag
47 * source and the drop action selected by the user. The user can select a drop
48 * action by pressing modifier keys during the drag operation:
54 * If the user selects a drop action, the <i>user drop action</i> is one of
55 * <code>DnDConstants</code> that represents the selected drop action if this
56 * drop action is supported by the drag source or
57 * <code>DnDConstants.ACTION_NONE</code> if this drop action is not supported
60 * If the user doesn't select a drop action, the set of
64 * <code>DnDConstants.ACTION_LINK</code> and the <i>user drop action</i> is the
65 * first constant found. If no constant is found the <i>user drop action</i>
86 * The arguments <code>dropAction</code> and <code>action</code> should
87 * be one of <code>DnDConstants</code> that represents a single action.
93 * <code>action</code> and <code>modifiers</code>.
97 * @param dropAction the user drop action.
98 * @param action the target drop action.
113 int action, int modifiers) {
116 targetActions = action;
132 * <code>DragSourceContext</code>, user drop action, target drop action,
135 * The arguments <code>dropAction</code> and <code>action</code> should
136 * be one of <code>DnDConstants</code> that represents a single action.
142 * <code>action</code> and <code>modifiers</code>.
146 * @param dropAction the user drop action.
147 * @param action the target drop action.
163 int action, int modifiers, int x, int y) {
166 targetActions = action;
181 * This method returns the target drop action.
183 * @return the target drop action.
228 * This method returns the user drop action.
230 * @return the user drop action.
236 * the target drop action and the set of drop actions supported by
239 * @return the logical intersection of the target drop action and
251 * The target drop action.
258 * The user drop action.