org.jagatoo.input.events
Class MouseButtonClickedEvent
java.lang.Object
org.jagatoo.input.events.InputEvent
org.jagatoo.input.events.MouseEvent
org.jagatoo.input.events.MouseButtonEvent
org.jagatoo.input.events.MouseButtonClickedEvent
public class MouseButtonClickedEvent
- extends MouseButtonEvent
Stores details assotiated with a mouse-clicked-event.
This may be a single-click or a double-click or what ever.
Refer to the getClickCount() method to know about it.
|
Method Summary |
int |
getClickCount()
|
protected void |
set(Mouse mouse,
MouseButton button,
int clickCount,
long when,
long lastWhen)
Sets the fields of this MouseEvent to match the given MouseEvent. |
java.lang.String |
toString()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
MouseButtonClickedEvent
public MouseButtonClickedEvent(Mouse mouse,
MouseButton button,
int clickCount,
long when,
long lastWhen)
- Sets the fields of this MouseEvent to match the given MouseEvent.
MouseButtonClickedEvent
protected MouseButtonClickedEvent()
- Creates a MouseEvent with default values.
getClickCount
public final int getClickCount()
- Returns:
- the number of clicks.
toString
public java.lang.String toString()
-
- Overrides:
toString in class MouseButtonEvent
- Returns:
- in formation about this
InputEvent as a String.
set
protected void set(Mouse mouse,
MouseButton button,
int clickCount,
long when,
long lastWhen)
- Sets the fields of this MouseEvent to match the given MouseEvent.