Lines Matching defs:ops
82 * @param ops The default acceptable actions for this <code>DropTarget</code>
90 public DropTarget(Component c, int ops, DropTargetListener dtl,
100 setDefaultActions(ops);
130 * @param ops The default acceptable actions for this <code>DropTarget</code>
137 public DropTarget(Component c, int ops, DropTargetListener dtl,
141 this(c, ops, dtl, act, null);
180 * @param ops The default acceptable actions for this <code>DropTarget</code>
186 public DropTarget(Component c, int ops, DropTargetListener dtl)
189 this(c, ops, dtl, true);
248 * @param ops the default actions
253 public void setDefaultActions(int ops) {
254 getDropTargetContext().setTargetActions(ops & (DnDConstants.ACTION_COPY_OR_MOVE | DnDConstants.ACTION_REFERENCE));
261 void doSetDefaultActions(int ops) {
262 actions = ops;