Uses of Interface
org.malai.mapping.IActiveList

Packages that use IActiveList
net.sf.latexdraw.glib.ui   
org.malai.mapping   
 

Uses of IActiveList in net.sf.latexdraw.glib.ui
 

Fields in net.sf.latexdraw.glib.ui declared as IActiveList
protected  IActiveList<IViewShape> LCanvas.views
          The shapes of the canvas.
 

Uses of IActiveList in org.malai.mapping
 

Classes in org.malai.mapping that implement IActiveList
 class ActiveArrayList<E>
          Defines an active list that when an element is added/removed, then mapping registry is then notified.
 

Methods in org.malai.mapping with parameters of type IActiveList
<T> void
IMappingRegistry.onObjectAdded(IActiveList<T> list, T object, int index)
          Executes mappings related to the given list for the addition of an object.
<T> void
MappingRegistry.onObjectAdded(IActiveList<T> list, T object, int index)
           
<T> void
IMappingRegistry.onObjectMoved(IActiveList<T> list, T object, int srcIndex, int targetIndex)
          Executes mappings related to the given list for the move of an object.
<T> void
MappingRegistry.onObjectMoved(IActiveList<T> list, T object, int srcIndex, int targetIndex)
           
 void IMappingRegistry.onObjectRemoved(IActiveList<?> list, java.lang.Object object, int index)
          Executes mappings related to the given list for the deletion of an object.
 void MappingRegistry.onObjectRemoved(IActiveList<?> list, java.lang.Object object, int index)