nl.knowledgeplaza.util.collection
Interface CollectionListener<T>


public interface CollectionListener<T>

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


Method Summary
 void collectionChanged(CollectionEvent<T> e)
          Invoked when an ObservableCollection changes
 

Method Detail

collectionChanged

void collectionChanged(CollectionEvent<T> e)
Invoked when an ObservableCollection changes

Parameters:
e - the CollectionEvent


Copyright © 2012 KnowledgePlaza. All Rights Reserved.