Package org.cometd.oort
Class OortList.ElementListener.Adapter<E>
- java.lang.Object
-
- org.cometd.oort.OortList.ElementListener.Adapter<E>
-
- Type Parameters:
E
- the element type
- All Implemented Interfaces:
EventListener
,OortList.ElementListener<E>
- Enclosing interface:
- OortList.ElementListener<E>
@Deprecated public static class OortList.ElementListener.Adapter<E> extends Object implements OortList.ElementListener<E>
Deprecated.useOortList.ElementListener
insteadEmpty implementation ofOortList.ElementListener
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.cometd.oort.OortList.ElementListener
OortList.ElementListener.Adapter<E>
-
-
Constructor Summary
Constructors Constructor Description Adapter()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
onAdded(OortObject.Info<List<E>> info, List<E> elements)
Deprecated.Callback method invoked when elements are added to the entity list.void
onRemoved(OortObject.Info<List<E>> info, List<E> elements)
Deprecated.Callback method invoked when elements are removed from the entity list.
-
-
-
Method Detail
-
onAdded
public void onAdded(OortObject.Info<List<E>> info, List<E> elements)
Deprecated.Description copied from interface:OortList.ElementListener
Callback method invoked when elements are added to the entity list.- Specified by:
onAdded
in interfaceOortList.ElementListener<E>
- Parameters:
info
- theOortObject.Info
that was changed by the additionelements
- the elements added
-
onRemoved
public void onRemoved(OortObject.Info<List<E>> info, List<E> elements)
Deprecated.Description copied from interface:OortList.ElementListener
Callback method invoked when elements are removed from the entity list.- Specified by:
onRemoved
in interfaceOortList.ElementListener<E>
- Parameters:
info
- theOortObject.Info
that was changed by the removalelements
- the elements removed
-
-