diff options
Diffstat (limited to 'source/com/c2kernel/collection/Collection.java')
| -rw-r--r-- | source/com/c2kernel/collection/Collection.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/source/com/c2kernel/collection/Collection.java b/source/com/c2kernel/collection/Collection.java deleted file mode 100644 index b507593..0000000 --- a/source/com/c2kernel/collection/Collection.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.c2kernel.collection;
-import com.c2kernel.common.ObjectNotFoundException;
-import com.c2kernel.entity.C2KLocalObject;
-import com.c2kernel.utils.CastorHashMap;
-
-/**
- * @version $Revision: 1.13 $ $Date: 2004/05/14 15:39:39 $
- * @author $Author: abranson $
- */
-public interface Collection<E extends CollectionMember> extends C2KLocalObject
-{
- public static final short EMPTY = -1;
-
- public int getCounter();
-
- public void setCounter(int count);
-
- public int size();
-
- public void setMembers(CollectionMemberList<E> newMembers);
-
- public CollectionMemberList<E> getMembers();
-
- public E addMember(int entityKey, CastorHashMap props, String classProps) throws MembershipException;
-
- public E addMember(int entityKey) throws MembershipException;
-
- public void removeMember(int memberId) throws MembershipException;
-
- public E getMember(int memberId) throws ObjectNotFoundException;
-
-}
|
