Class ObjectStoreEvent<T>
- java.lang.Object
-
- java.util.EventObject
-
- net.fortuna.ical4j.connector.event.ObjectStoreEvent<T>
-
- Type Parameters:
T
- the object collection type supported by the event source
- All Implemented Interfaces:
Serializable
public class ObjectStoreEvent<T> extends EventObject
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ObjectStoreEvent(ObjectStore<ObjectCollection<T>> source, ObjectCollection<T> collection)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectCollection<T>
getCollection()
static long
getSerialVersionUID()
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
ObjectStoreEvent
public ObjectStoreEvent(ObjectStore<ObjectCollection<T>> source, ObjectCollection<T> collection)
- Parameters:
source
- the event sourcecollection
- the affected collection
-
-
Method Detail
-
getSerialVersionUID
public static final long getSerialVersionUID()
- Returns:
- the serialVersionUID
-
getCollection
public final ObjectCollection<T> getCollection()
- Returns:
- the collection
-
-