kAWT Version 0.25

java.awt.event
Class MouseEvent

java.lang.Object
  |
  +--java.awt.AWTEvent
        |
        +--java.awt.event.MouseEvent

public class MouseEvent
extends AWTEvent


Field Summary
static int MOUSE_CLICKED
           
static int MOUSE_DRAGGED
           
static int MOUSE_ENTERED
           
static int MOUSE_EXITED
           
static int MOUSE_MOVED
           
static int MOUSE_PRESSED
           
static int MOUSE_RELEASED
           
 
Fields inherited from class java.awt.AWTEvent
consumed, id, source
 
Constructor Summary
MouseEvent(java.lang.Object source, int id, int when, int modify, int x, int y)
           
 
Method Summary
 int getX()
           
 int getY()
           
 void translatePoint(int dx, int dy)
           
 
Methods inherited from class java.awt.AWTEvent
getID, getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MOUSE_CLICKED

public static final int MOUSE_CLICKED

MOUSE_PRESSED

public static final int MOUSE_PRESSED

MOUSE_RELEASED

public static final int MOUSE_RELEASED

MOUSE_MOVED

public static final int MOUSE_MOVED

MOUSE_ENTERED

public static final int MOUSE_ENTERED

MOUSE_EXITED

public static final int MOUSE_EXITED

MOUSE_DRAGGED

public static final int MOUSE_DRAGGED
Constructor Detail

MouseEvent

public MouseEvent(java.lang.Object source,
                  int id,
                  int when,
                  int modify,
                  int x,
                  int y)
Method Detail

getX

public int getX()

getY

public int getY()

translatePoint

public void translatePoint(int dx,
                           int dy)

kAWT Version 0.25