public class LinkEventType extends java.lang.Object
ILinkComponent
can provide handlers for.Modifier and Type | Field and Description |
---|---|
static LinkEventType |
CLICK
Type for
onClick . |
static LinkEventType |
DOUBLE_CLICK
Type for
onDblClick . |
static LinkEventType |
MOUSE_DOWN
Type for
onMouseDown . |
static LinkEventType |
MOUSE_OUT
Type for
onMouseOut . |
static LinkEventType |
MOUSE_OVER
Type for
onMouseOver . |
static LinkEventType |
MOUSE_UP
Type for
onMouseUp . |
Modifier | Constructor and Description |
---|---|
protected |
LinkEventType(java.lang.String name,
java.lang.String attributeName)
Constructs a new type of event.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAttributeName()
Returns the name of the HTML attribute corresponding to this type.
|
java.lang.String |
toString() |
public static final LinkEventType MOUSE_OVER
onMouseOver
. This may also be called "focus".public static final LinkEventType MOUSE_OUT
onMouseOut
. This may also be called "blur".public static final LinkEventType CLICK
onClick
.public static final LinkEventType DOUBLE_CLICK
onDblClick
.public static final LinkEventType MOUSE_DOWN
onMouseDown
.public static final LinkEventType MOUSE_UP
onMouseUp
.protected LinkEventType(java.lang.String name, java.lang.String attributeName)
This method is protected so that subclasses can be created to provide additional managed event types.
public java.lang.String getAttributeName()
public java.lang.String toString()
toString
in class java.lang.Object