|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.Dictionary<K,V> java.util.Hashtable org.apache.openjpa.util.ProxyHashtable
public class ProxyHashtable
Extension of the Hashtable
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.
Constructor Summary | |
---|---|
ProxyHashtable()
|
|
ProxyHashtable(Class keyType,
Class valueType,
boolean trackChanges,
OpenJPAConfiguration conf)
|
Method Summary | |
---|---|
void |
clear()
|
Object |
copy(Object orig)
Return an unproxied copy of the given instance. |
Set |
entrySet()
|
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. |
Set |
keySet()
|
ProxyMap |
newInstance(Class keyType,
Class valueType,
Comparator compare,
boolean trackChanges,
OpenJPAConfiguration conf)
This method should return a new proxy of the same concrete type as the implementing class. |
Object |
put(Object key,
Object value)
|
void |
putAll(Map m)
|
Object |
remove(Object key)
|
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. |
Collection |
values()
|
protected Object |
writeReplace()
|
Methods inherited from class java.util.Hashtable |
---|
clone, contains, containsKey, containsValue, elements, equals, get, hashCode, isEmpty, keys, rehash, size, toString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ProxyHashtable()
public ProxyHashtable(Class keyType, Class valueType, 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 ProxyMap newInstance(Class keyType, Class valueType, Comparator compare, boolean trackChanges, OpenJPAConfiguration conf)
ProxyMap
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 ProxyMap
public void clear()
clear
in interface Map
clear
in class Hashtable
public Set keySet()
keySet
in interface Map
keySet
in class Hashtable
public Collection values()
values
in interface Map
values
in class Hashtable
public Set entrySet()
entrySet
in interface Map
entrySet
in class Hashtable
public Object put(Object key, Object value)
put
in interface Map
put
in class Hashtable
public void putAll(Map m)
putAll
in interface Map
putAll
in class Hashtable
public Object remove(Object key)
remove
in interface Map
remove
in class Hashtable
protected Object writeReplace() throws ObjectStreamException
ObjectStreamException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |