org.objectweb.speedo.runtime.genclass.collection
Class CollectionAccessor

org.objectweb.speedo.runtime.genclass.GenClassAccessor
  |
  +--org.objectweb.speedo.runtime.genclass.collection.CollectionAccessor
All Implemented Interfaces:
java.util.Collection
Direct Known Subclasses:
SetAccessor

public class CollectionAccessor
extends GenClassAccessor
implements java.util.Collection

Author:
S.Chassande-Barrioz

Field Summary
protected  java.util.Collection elements
          The ArrayList used to store the indexed elements of the genclass.
 
Fields inherited from class org.objectweb.speedo.runtime.genclass.GenClassAccessor
jdoProxy, logger, supportDelta, tmpelem
 
Constructor Summary
CollectionAccessor(CollectionImpl jdoProxy, int size)
          Instanciates and initializes a new collection with an initial size.
 
Method Summary
 boolean add(java.lang.Object o)
           
 boolean addAll(java.util.Collection c)
           
 void clear()
           
 boolean contains(java.lang.Object o)
           
 boolean containsAll(java.util.Collection c)
           
 org.objectweb.jorm.api.PIndexedElem createPIndexedElem()
           
 boolean equals(java.lang.Object o)
           
 boolean isEmpty()
           
 java.util.Iterator iterator()
           
 void paAdd(org.objectweb.jorm.api.PIndexedElem elem, java.lang.Object conn)
           
 int paGetNbElem()
           
 java.util.Iterator paIterator()
           
 void paSetNbElem(int nbelem)
           
 boolean remove(java.lang.Object o)
           
 boolean removeAll(java.util.Collection c)
           
 boolean retainAll(java.util.Collection c)
           
 int size()
           
 java.lang.Object[] toArray()
           
 java.lang.Object[] toArray(java.lang.Object[] a)
           
 java.lang.String toString()
           
 
Methods inherited from class org.objectweb.speedo.runtime.genclass.GenClassAccessor
getMemoryInstance, paDeltaSupported
 
Methods inherited from interface java.util.Collection
hashCode
 

Field Detail

elements

protected java.util.Collection elements
The ArrayList used to store the indexed elements of the genclass. Then this list contains also the deleted elements.
Constructor Detail

CollectionAccessor

public CollectionAccessor(CollectionImpl jdoProxy,
                          int size)
Instanciates and initializes a new collection with an initial size.
Method Detail

toString

public java.lang.String toString()

add

public boolean add(java.lang.Object o)
Specified by:
add in interface java.util.Collection

addAll

public boolean addAll(java.util.Collection c)
Specified by:
addAll in interface java.util.Collection

clear

public void clear()
Specified by:
clear in interface java.util.Collection

contains

public boolean contains(java.lang.Object o)
Specified by:
contains in interface java.util.Collection

containsAll

public boolean containsAll(java.util.Collection c)
Specified by:
containsAll in interface java.util.Collection

equals

public boolean equals(java.lang.Object o)
Specified by:
equals in interface java.util.Collection

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface java.util.Collection

iterator

public java.util.Iterator iterator()
Specified by:
iterator in interface java.util.Collection

remove

public boolean remove(java.lang.Object o)
Specified by:
remove in interface java.util.Collection

removeAll

public boolean removeAll(java.util.Collection c)
Specified by:
removeAll in interface java.util.Collection

retainAll

public boolean retainAll(java.util.Collection c)
Specified by:
retainAll in interface java.util.Collection

size

public int size()
Specified by:
size in interface java.util.Collection

toArray

public java.lang.Object[] toArray()
Specified by:
toArray in interface java.util.Collection

toArray

public java.lang.Object[] toArray(java.lang.Object[] a)
Specified by:
toArray in interface java.util.Collection

createPIndexedElem

public org.objectweb.jorm.api.PIndexedElem createPIndexedElem()
Overrides:
createPIndexedElem in class GenClassAccessor

paAdd

public void paAdd(org.objectweb.jorm.api.PIndexedElem elem,
                  java.lang.Object conn)
           throws org.objectweb.jorm.api.PExceptionIO

paGetNbElem

public int paGetNbElem()

paIterator

public java.util.Iterator paIterator()

paSetNbElem

public void paSetNbElem(int nbelem)