Lines Matching refs:dgl
114 * @param dgl the <code>DragGestureRecognizer</code>
121 protected DragGestureRecognizer(DragSource ds, Component c, int sa, DragGestureListener dgl) {
131 if (dgl != null) addDragGestureListener(dgl);
312 * @param dgl the <code>DragGestureListener</code> to register
319 public synchronized void addDragGestureListener(DragGestureListener dgl) throws TooManyListenersException {
323 dragGestureListener = dgl;
332 * @param dgl the <code>DragGestureListener</code> to unregister
336 * dgl is not (equal to) the currently registered <code>DragGestureListener</code>.
339 public synchronized void removeDragGestureListener(DragGestureListener dgl) {
340 if (dragGestureListener == null || !dragGestureListener.equals(dgl))