Lines Matching refs:DropTargetListener

70 public class DropTarget implements DropTargetListener, Serializable {
78 * support, a {@code DropTargetListener}
86 * @param dtl The {@code DropTargetListener} for this {@code DropTarget}
93 public DropTarget(Component c, int ops, DropTargetListener dtl,
127 * to support, a {@code DropTargetListener}
134 * @param dtl The {@code DropTargetListener} for this {@code DropTarget}
140 public DropTarget(Component c, int ops, DropTargetListener dtl,
159 * to associate itself with, and the {@code DropTargetListener}
164 * @param dtl The {@code DropTargetListener} for this {@code DropTarget}
169 public DropTarget(Component c, DropTargetListener dtl)
179 * {@code DropTargetListener} to handle event processing.
184 * @param dtl The {@code DropTargetListener} for this {@code DropTarget}
189 public DropTarget(Component c, int ops, DropTargetListener dtl)
300 * Adds a new {@code DropTargetListener} (UNICAST SOURCE).
302 * @param dtl The new {@code DropTargetListener}
305 * {@code DropTargetListener} is already added to this
309 public synchronized void addDropTargetListener(DropTargetListener dtl) throws TooManyListenersException {
321 * Removes the current {@code DropTargetListener} (UNICAST SOURCE).
323 * @param dtl the DropTargetListener to deregister.
326 public synchronized void removeDropTargetListener(DropTargetListener dtl) {
337 * {@code DropTargetListener} and passes it
364 * {@code DropTargetListener} and passes it
386 * {@code DropTargetListener} and passes it
408 * {@code DropTargetListener} and passes it
433 * {@code DropTargetListener} and passes it
442 * no a {@code DropTargetListener} registered.
575 * and then writes out this object's {@code DropTargetListener} if and
580 * followed by either a {@code DropTargetListener}
595 * {@code DropTargetListener} as well. This is first attempted by
598 * {@code DropTargetListener}. If this fails, the next object in the
624 dtListener = (DropTargetListener)f.get("dtListener", null);
627 dtListener = (DropTargetListener)s.readObject();
862 private transient DropTargetListener dtListener;