Searched defs:MOUSE_FIRST (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/event/
H A DMouseEvent.java175 * in the range from {@code MOUSE_FIRST} to {@code MOUSE_LAST}-1
195 public static final int MOUSE_FIRST = 500; field in class:MouseEvent
206 public static final int MOUSE_CLICKED = MOUSE_FIRST;
212 public static final int MOUSE_PRESSED = 1 + MOUSE_FIRST; //Event.MOUSE_DOWN
218 public static final int MOUSE_RELEASED = 2 + MOUSE_FIRST; //Event.MOUSE_UP
224 public static final int MOUSE_MOVED = 3 + MOUSE_FIRST; //Event.MOUSE_MOVE
231 public static final int MOUSE_ENTERED = 4 + MOUSE_FIRST; //Event.MOUSE_ENTER
238 public static final int MOUSE_EXITED = 5 + MOUSE_FIRST; //Event.MOUSE_EXIT
244 public static final int MOUSE_DRAGGED = 6 + MOUSE_FIRST; //Event.MOUSE_DRAG
251 public static final int MOUSE_WHEEL = 7 + MOUSE_FIRST;
[all...]

Completed in 29 milliseconds