Uses of Interface
org.eclipse.jpt.utility.model.listener.CollectionChangeListener

Packages that use CollectionChangeListener
org.eclipse.jpt.utility.model   
org.eclipse.jpt.utility.model.listener   
 

Uses of CollectionChangeListener in org.eclipse.jpt.utility.model
 

Methods in org.eclipse.jpt.utility.model with parameters of type CollectionChangeListener
 void Model.addCollectionChangeListener(CollectionChangeListener listener)
          Add a listener that listens to all collection change events, regardless of the collection name associated with that event.
 void Model.addCollectionChangeListener(java.lang.String collectionName, CollectionChangeListener listener)
          Add a listener that listens to all collection change events with the specified collection name.
 void Model.removeCollectionChangeListener(CollectionChangeListener listener)
          Remove a listener that listens to all collection change events, regardless of the collection name associated with that event.
 void Model.removeCollectionChangeListener(java.lang.String collectionName, CollectionChangeListener listener)
          Remove a listener that listens to all collection change events, with the specified collection name.
 

Uses of CollectionChangeListener in org.eclipse.jpt.utility.model.listener
 

Classes in org.eclipse.jpt.utility.model.listener that implement CollectionChangeListener
 class CollectionChangeAdapter
          Convenience implementation of CollectionChangeListener.
 

Methods in org.eclipse.jpt.utility.model.listener that return CollectionChangeListener
static CollectionChangeListener ReflectiveChangeListener.buildCollectionChangeListener(java.lang.Object target, java.lang.reflect.Method method)
          Construct a collection change listener that will invoke the specified method on the specified target for any change event.
static CollectionChangeListener ReflectiveChangeListener.buildCollectionChangeListener(java.lang.Object target, java.lang.reflect.Method addMethod, java.lang.reflect.Method removeMethod, java.lang.reflect.Method clearMethod, java.lang.reflect.Method changeMethod)
          Construct a collection change listener that will invoke the specified methods on the specified target.
static CollectionChangeListener ReflectiveChangeListener.buildCollectionChangeListener(java.lang.Object target, java.lang.String methodName)
          Construct a collection change listener that will invoke the specified method on the specified target for any change event.
static CollectionChangeListener ReflectiveChangeListener.buildCollectionChangeListener(java.lang.Object target, java.lang.String addMethodName, java.lang.String removeMethodName, java.lang.String clearMethodName, java.lang.String changeMethodName)
          Construct a collection change listener that will invoke the specified methods on the specified target for change events.