Lines Matching refs:when
42 * when the action happens.
204 * occurs when a mouse button is pressed and released.
210 * occurs when a mouse button is pushed down.
216 * occurs when a mouse button is let up.
222 * occurs when the mouse position changes.
228 * occurs when the mouse cursor enters the unobscured part of component's
235 * occurs when the mouse cursor exits the unobscured part of component's
242 * occurs when the mouse position changes while a mouse button is pressed.
248 * It occurs when a mouse equipped with a wheel has its wheel rotated.
472 * <tt>MouseEvent(source, id, when, modifiers, x, y, clickCount, popupTrigger, button)</tt>
475 * int, int, int, boolean, int) MouseEvent}(source, id, when, modifiers,
488 * @param when A long integer that gives the time the event occurred.
550 public MouseEvent(Component source, int id, long when, int modifiers,
554 this(source, id, when, modifiers, x, y, 0, 0, clickCount, popupTrigger, button);
571 * <tt>MouseEvent(source, id, when, modifiers, x, y, clickCount, popupTrigger)</tt>
574 * int, int, int, boolean, int) MouseEvent}(source, id, when, modifiers,
586 * @param when A long integer that gives the time the event occurred.
616 public MouseEvent(Component source, int id, long when, int modifiers,
618 this(source, id, when, modifiers, x, y, clickCount, popupTrigger, NOBUTTON);
657 * @param when A long integer that gives the time the event occurred.
729 public MouseEvent(Component source, int id, long when, int modifiers,
733 super(source, id, when, modifiers);