SolarMetric Kodo JDO 2.4.3 generated on March 27 2003

com.solarmetric.kodo.util
Class ProxyArrayList

java.lang.Object
  |
  +--java.util.AbstractCollection
        |
        +--java.util.AbstractList
              |
              +--java.util.ArrayList
                    |
                    +--com.solarmetric.kodo.util.ProxyArrayList
All Implemented Interfaces:
Cloneable, Collection, List, Proxy, ProxyCollection, Serializable

public class ProxyArrayList
extends ArrayList
implements ProxyCollection

Extension of the ArrayList type that dirties the persistent/transactional field it is assigned to on modification. The need to dirty the field on any modification mandates that this class must override all mutator methods of the base type. This may lead to multiple calls to the PersistenceCapable.jdoMakeDirty(java.lang.String) for one state change if one mutator method of the base type calls another.

See Also:
Serialized Form

Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
ProxyArrayList()
          Template constructor.
ProxyArrayList(Class elementType)
          Constructor.
ProxyArrayList(Collection contents, Class elementType)
          Constructor.
 
Method Summary
 void add(int index, Object value)
           
 boolean add(Object value)
           
 boolean addAll(Collection values)
           
 boolean addAll(int index, Collection values)
           
 void clear()
           
 Comparator getComparator()
          Return the comparator used in this collection, or null if it is unordered or uses natural ordering.
 Collection getCopy(Collection orig)
          This method should return a copy of the given collection; the copy should be of the same class as the superclass of this collection.
 Object getOwner()
          Return the owning object.
 String getOwnerFieldName()
          Return the owning field name.
 Iterator iterator()
           
 ListIterator listIterator()
           
 ListIterator listIterator(int index)
           
 ProxyCollection newInstance(Class elementType, Collection contents, Comparator compare)
          This method should return a new proxy of the same concrete type as the implementing class.
 Object remove(int index)
           
 boolean remove(Object o)
           
 boolean removeAll(Collection c)
           
 boolean retainAll(Collection c)
           
 Object set(int index, Object element)
           
 void setOwner(Object pc, String fieldName)
          Set the owning JDO instance of the proxy and the name of the field it is assigned to.
protected  Object writeReplace()
           
 
Methods inherited from class java.util.ArrayList
clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, removeRange, size, toArray, toArray, trimToSize
 
Methods inherited from class java.util.AbstractList
equals, hashCode, subList
 
Methods inherited from class java.util.AbstractCollection
containsAll, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Collection
contains, containsAll, equals, hashCode, isEmpty, size, toArray, toArray
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode, subList
 

Constructor Detail

ProxyArrayList

public ProxyArrayList()
Template constructor.

ProxyArrayList

public ProxyArrayList(Collection contents,
                      Class elementType)
Constructor.
Parameters:
contents - The data that this collection should contain.
elementType - All elements in this collection must be instances of this type.

ProxyArrayList

public ProxyArrayList(Class elementType)
Constructor.
Parameters:
elementType - All elements in this collection must be instances of this type.
Method Detail

newInstance

public ProxyCollection newInstance(Class elementType,
                                   Collection contents,
                                   Comparator compare)
Description copied from interface: ProxyCollection
This method should return a new proxy of the same concrete type as the implementing class. Used by the ProxyManager factories: one template instance of each type is created for the purpose of producing new instances via this method. Overcomes the performance penalties of reflection.
Specified by:
newInstance in interface ProxyCollection

getCopy

public Collection getCopy(Collection orig)
Description copied from interface: ProxyCollection
This method should return a copy of the given collection; the copy should be of the same class as the superclass of this collection.
Specified by:
getCopy in interface ProxyCollection

getComparator

public Comparator getComparator()
Description copied from interface: ProxyCollection
Return the comparator used in this collection, or null if it is unordered or uses natural ordering.
Specified by:
getComparator in interface ProxyCollection

setOwner

public void setOwner(Object pc,
                     String fieldName)
Description copied from interface: Proxy
Set the owning JDO instance of the proxy and the name of the field it is assigned to. Set to null to indicate that the proxy is no longer managed.
Specified by:
setOwner in interface Proxy

getOwner

public Object getOwner()
Description copied from interface: Proxy
Return the owning object.
Specified by:
getOwner in interface Proxy

getOwnerFieldName

public String getOwnerFieldName()
Description copied from interface: Proxy
Return the owning field name.
Specified by:
getOwnerFieldName in interface Proxy

add

public void add(int index,
                Object value)
Overrides:
add in class ArrayList

add

public boolean add(Object value)
Specified by:
add in interface Collection
Overrides:
add in class ArrayList

addAll

public boolean addAll(int index,
                      Collection values)
Overrides:
addAll in class ArrayList

addAll

public boolean addAll(Collection values)
Specified by:
addAll in interface Collection
Overrides:
addAll in class ArrayList

clear

public void clear()
Specified by:
clear in interface Collection
Overrides:
clear in class ArrayList

iterator

public Iterator iterator()
Specified by:
iterator in interface Collection
Overrides:
iterator in class AbstractList

listIterator

public ListIterator listIterator()
Overrides:
listIterator in class AbstractList

listIterator

public ListIterator listIterator(int index)
Overrides:
listIterator in class AbstractList

remove

public Object remove(int index)
Overrides:
remove in class ArrayList

remove

public boolean remove(Object o)
Specified by:
remove in interface Collection
Overrides:
remove in class AbstractCollection

removeAll

public boolean removeAll(Collection c)
Specified by:
removeAll in interface Collection
Overrides:
removeAll in class AbstractCollection

retainAll

public boolean retainAll(Collection c)
Specified by:
retainAll in interface Collection
Overrides:
retainAll in class AbstractCollection

set

public Object set(int index,
                  Object element)
Overrides:
set in class ArrayList

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException

SolarMetric Kodo JDO 2.4.3 generated on March 27 2003

Copyright 2001,2002 SolarMetric, Inc. All Rights Reserved.