Name: sdC67446 Date: 05/21/98
The spec for ctors
java.awt.dnd.DragGestureEvent(DragGestureRecognizer dgr,
int act, Point ori, List evs)
does not specify behavior if parameters 'dgr','p','evs' are null,
or 'act' is invalid, or 'evs' is empty.
Currently ctor throws unexpected IllegalArgumentException in those cases.
Here is what doc says:
--------------------------------------------------
public DragGestureEvent(DragGestureRecognizer dgr,
int act,
Point ori,
List evs)
construct a DragGestureEvent
Parameters:
dgr - The DragSourceRecognizer firing this event
ori - The origin of the drag
act - The the user's preferred action
evs - The List of events that comprise the gesture
--------------------------------------------------
======================================================================