com.vaadin.event.


Interface MouseEvents.ClickListener

All Superinterfaces:

ComponentEventListener, EventListener, Serializable

Enclosing interface:

MouseEvents

public static interface MouseEvents.ClickListener
extends ComponentEventListener

Interface for listening for a MouseEvents.ClickEvent fired by a Component.

Since:

6.2

Version:

6.8.18

Author:

Vaadin Ltd.

See Also:

MouseEvents.ClickEvent

Field Summary
static Method clickMethod
           
 
Method Summary
 void click(MouseEvents.ClickEvent event)
          Called when a Component has been clicked.
 

Field Detail

clickMethod

static final Method clickMethod
Method Detail

click

void click(MouseEvents.ClickEvent event)

Called when a Component has been clicked. A reference to the component is given by Component.Event.getComponent().

Parameters:
event - An event containing information about the click.