|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.AbstractCollection<E> java.util.AbstractList<E> java.util.Vector org.apache.openjpa.util.ProxyVector
public class ProxyVector
Extension of the Vector
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 dirty
for one state
change if one mutator method of the base type calls another.
Field Summary |
---|
Fields inherited from class java.util.Vector |
---|
capacityIncrement, elementCount, elementData |
Fields inherited from class java.util.AbstractList |
---|
modCount |
Constructor Summary | |
---|---|
ProxyVector()
|
|
ProxyVector(Class elementType,
boolean trackChanges,
OpenJPAConfiguration conf)
|
Method Summary | |
---|---|
void |
add(int index,
Object value)
|
boolean |
add(Object value)
|
boolean |
addAll(Collection values)
|
boolean |
addAll(int index,
Collection values)
|
void |
addElement(Object value)
|
void |
clear()
|
Object |
copy(Object orig)
Return an unproxied copy of the given instance. |
ChangeTracker |
getChangeTracker()
Return the change tracker for this proxy, or null if none. |
OpenJPAStateManager |
getOwner()
Return the owning object. |
int |
getOwnerField()
Return the owning field index. |
void |
insertElementAt(Object value,
int index)
|
Iterator |
iterator()
|
ListIterator |
listIterator()
|
ListIterator |
listIterator(int index)
|
ProxyCollection |
newInstance(Class elementType,
Comparator compare,
boolean trackChanges,
OpenJPAConfiguration conf)
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)
|
void |
removeAllElements()
|
boolean |
removeElement(Object o)
|
void |
removeElementAt(int index)
|
boolean |
retainAll(Collection c)
|
Object |
set(int index,
Object value)
|
void |
setElementAt(Object value,
int index)
|
void |
setOwner(OpenJPAStateManager sm,
int field)
Reset the state of the proxy, and set the owning instance of the proxy and the name of the field it is assigned to. |
protected Object |
writeReplace()
|
Methods inherited from class java.util.Vector |
---|
capacity, clone, contains, containsAll, copyInto, elementAt, elements, ensureCapacity, equals, firstElement, get, hashCode, indexOf, indexOf, isEmpty, lastElement, lastIndexOf, lastIndexOf, removeRange, setSize, size, subList, toArray, toArray, toString, trimToSize |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ProxyVector()
public ProxyVector(Class elementType, boolean trackChanges, OpenJPAConfiguration conf)
Method Detail |
---|
public void setOwner(OpenJPAStateManager sm, int field)
Proxy
setOwner
in interface Proxy
public OpenJPAStateManager getOwner()
Proxy
getOwner
in interface Proxy
public int getOwnerField()
Proxy
getOwnerField
in interface Proxy
public ChangeTracker getChangeTracker()
Proxy
getChangeTracker
in interface Proxy
public Object copy(Object orig)
Proxy
copy
in interface Proxy
public ProxyCollection newInstance(Class elementType, Comparator compare, boolean trackChanges, OpenJPAConfiguration conf)
ProxyCollection
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.
newInstance
in interface ProxyCollection
public void add(int index, Object value)
add
in interface List
add
in class Vector
public void insertElementAt(Object value, int index)
insertElementAt
in class Vector
public boolean add(Object value)
add
in interface Collection
add
in interface List
add
in class Vector
public void addElement(Object value)
addElement
in class Vector
public boolean addAll(int index, Collection values)
addAll
in interface List
addAll
in class Vector
public boolean addAll(Collection values)
addAll
in interface Collection
addAll
in interface List
addAll
in class Vector
public void clear()
clear
in interface Collection
clear
in interface List
clear
in class Vector
public void removeAllElements()
removeAllElements
in class Vector
public Iterator iterator()
iterator
in interface Iterable
iterator
in interface Collection
iterator
in interface List
iterator
in class AbstractList
public ListIterator listIterator()
listIterator
in interface List
listIterator
in class AbstractList
public ListIterator listIterator(int index)
listIterator
in interface List
listIterator
in class AbstractList
public Object remove(int index)
remove
in interface List
remove
in class Vector
public void removeElementAt(int index)
removeElementAt
in class Vector
public boolean remove(Object o)
remove
in interface Collection
remove
in interface List
remove
in class Vector
public boolean removeElement(Object o)
removeElement
in class Vector
public boolean removeAll(Collection c)
removeAll
in interface Collection
removeAll
in interface List
removeAll
in class Vector
public boolean retainAll(Collection c)
retainAll
in interface Collection
retainAll
in interface List
retainAll
in class Vector
public Object set(int index, Object value)
set
in interface List
set
in class Vector
public void setElementAt(Object value, int index)
setElementAt
in class Vector
protected Object writeReplace() throws ObjectStreamException
ObjectStreamException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |