Uses of Class
org.apache.commons.events.observable.ModificationHandler

Packages that use ModificationHandler
org.apache.commons.events.observable   
org.apache.commons.events.observable.standard   
 

Uses of ModificationHandler in org.apache.commons.events.observable
 

Subclasses of ModificationHandler in org.apache.commons.events.observable
protected static class ModificationHandler.SetViewHandler
          Inner class for views.
protected static class ModificationHandler.SubListHandler
          Inner class for subLists.
 

Fields in org.apache.commons.events.observable declared as ModificationHandler
protected  ModificationHandler ObservableCollection.handler
          The handler to delegate event handling to
protected  ModificationHandler ModificationEvent.handler
          The handler
 

Methods in org.apache.commons.events.observable that return ModificationHandler
protected  ModificationHandler ObservableCollection.createHandler(Collection coll, Object listener)
          Creates a handler subclass based on the specified listener.
 ModificationHandler ModificationHandlerFactory.createHandler(Collection coll, Object listener)
          Creates a handler subclass for the specified listener.
protected  ModificationHandler ModificationHandler.createHeadSetHandler(Object toElement)
          Creates a new handler for SortedSet headSet.
protected  ModificationHandler ModificationHandler.createSubListHandler(int fromIndex, int toIndex)
          Creates a new handler for subLists that is aware of the offset.
protected  ModificationHandler ModificationHandler.createSubSetHandler(Object fromElement, Object toElement)
          Creates a new handler for SortedSet subSet.
protected  ModificationHandler ModificationHandler.createTailSetHandler(Object fromElement)
          Creates a new handler for SortedSet tailSet.
 ModificationHandler ObservableCollection.getHandler()
          Gets the handler that is observing this collection.
 ModificationHandler ModificationEvent.getHandler()
          Gets the handler of the events.
protected  ModificationHandler ModificationHandler.getRootHandler()
          Gets the root handler.
 

Constructors in org.apache.commons.events.observable with parameters of type ModificationHandler
ModificationEvent(ObservableCollection obsCollection, ModificationHandler handler, int type)
          Constructor.
ModificationHandler.SetViewHandler(ModificationHandler rootHandler)
          Constructor.
ModificationHandler.SubListHandler(ModificationHandler rootHandler, int viewOffset)
          Constructor.
ModificationHandler(ModificationHandler rootHandler, int viewOffset)
          Constructor.
ObservableCollection(ModificationHandler handler, Collection coll)
          Constructor used by subclass views, such as subList.
ObservableList(ModificationHandler handler, List list)
          Constructor used by subclass views, such as subList.
 

Uses of ModificationHandler in org.apache.commons.events.observable.standard
 

Subclasses of ModificationHandler in org.apache.commons.events.observable.standard
 class StandardModificationHandler
          The standard implementation of a ModificationHandler that sends standard JavaBean style events to listeners.
 

Constructors in org.apache.commons.events.observable.standard with parameters of type ModificationHandler
StandardModificationEvent(ObservableCollection obsCollection, ModificationHandler handler, int type, int preSize, int index, Object object, int repeat, Object previous, ObservableCollection view, int viewOffset)
          Constructor.
StandardPostModificationEvent(ObservableCollection obsCollection, ModificationHandler handler, int type, int preSize, int index, Object object, int repeat, Object previous, ObservableCollection view, int viewOffset)
          Constructor.
StandardPreModificationEvent(ObservableCollection obsCollection, ModificationHandler handler, int type, int preSize, int index, Object object, int repeat, Object previous, ObservableCollection view, int viewOffset)
          Constructor.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.