com.hack23.cia.web.api.common
Interface ControllerActionListener

Package class diagram package ControllerActionListener
All Superinterfaces:
com.vaadin.ui.Button.ClickListener, Serializable
All Known Implementing Classes:
ApplicationActionListener

public interface ControllerActionListener
extends com.vaadin.ui.Button.ClickListener

The listener interface for receiving controllerAction events. The class that is interested in processing a controllerAction event implements this interface, and the object created with that class is registered with a component using the component's addControllerActionListener method. When the controllerAction event occurs, that object's appropriate method is invoked.

See Also:
ControllerActionEvent

Method Summary
Modifier and Type Method and Description
 void handleAction(ControllerAction action)
          Handle action.
 
Methods inherited from interface com.vaadin.ui.Button.ClickListener
buttonClick
 

Method Detail

handleAction

void handleAction(ControllerAction action)
Handle action.

Parameters:
action - the action


Copyright © 2008-2010 www.hack23.com. All Rights Reserved.