com.vaadin.event
Interface MouseEvents.ClickListener

All Superinterfaces:
ConnectorEventListener, java.util.EventListener, java.io.Serializable
Enclosing interface:
MouseEvents

public static interface MouseEvents.ClickListener
extends ConnectorEventListener

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

Since:
6.2
Author:
Vaadin Ltd.
See Also:
MouseEvents.ClickEvent

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

Field Detail

clickMethod

static final java.lang.reflect.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.


Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.