Searched defs:dtc (Results 1 - 3 of 3) sorted by relevance
| /openjdk7/jdk/src/share/classes/java/awt/dnd/ |
| H A D | DropTargetEvent.java | 51 * @param dtc The <code>DropTargetContext</code> 52 * @throws NullPointerException if {@code dtc} equals {@code null}. 57 public DropTargetEvent(DropTargetContext dtc) { argument 58 super(dtc.getDropTarget()); 60 context = dtc;
|
| H A D | DropTargetDragEvent.java | 84 * @param dtc The DropTargetContext for this operation 95 * @throws <code>IllegalArgumentException</code> if dtc is <code>null</code>. 98 public DropTargetDragEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions) { argument 99 super(dtc);
|
| H A D | DropTargetDropEvent.java | 89 * @param dtc The <code>DropTargetContext</code> for this operation 101 * @throws <code>IllegalArgumentException</code> if dtc is <code>null</code>. 104 public DropTargetDropEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions) { argument 105 super(dtc); 132 * @param dtc The DropTargetContext for this operation 145 * @throws <code>IllegalArgumentException</code> if dtc is <code>null</code>. 148 public DropTargetDropEvent(DropTargetContext dtc, Point cursorLocn, int dropAction, int srcActions, boolean isLocal) { argument 149 this(dtc, cursorLocn, dropAction, srcActions);
|
Completed in 39 milliseconds