org.cafesip.gwtcomp.client.ui
Interface DroppableListListener


public interface DroppableListListener

A listener interface that applications must implement for listening to DroppableList events. The events are fired when certain events occurs on the list. Applications can write their own business logic to handle such events.

Author:
Amit Chatterjee

Method Summary
 void itemAdded(String name)
          This method is invoked when an item is dropped (or added to the list).
 void itemRemove(String name)
          This method is invoked when an item is removed from the list by the user.
 

Method Detail

itemAdded

void itemAdded(String name)
This method is invoked when an item is dropped (or added to the list).

Parameters:
name - name of the item.

itemRemove

void itemRemove(String name)
This method is invoked when an item is removed from the list by the user.

Parameters:
name - name of the item.


Copyright © 2010 Cafesip.org. All Rights Reserved.