Uses of Interface
com.thoughtworks.proxy.kit.ObjectReference

Packages that use ObjectReference
com.thoughtworks.proxy.kit Utility classes building the toys. 
com.thoughtworks.proxy.toys.delegate A toy to delegate method calls to another object. 
com.thoughtworks.proxy.toys.dispatch A toy to dispatch method calls to different objects. 
com.thoughtworks.proxy.toys.hotswap A toy to hot swap instances. 
com.thoughtworks.proxy.toys.pool A toy to create object pools based on proxies. 
com.thoughtworks.proxy.toys.privilege A toy to run method calls as privileged actions. 
 

Uses of ObjectReference in com.thoughtworks.proxy.kit
 

Classes in com.thoughtworks.proxy.kit that implement ObjectReference
 class SimpleReference<T>
          Simple implementation for an ObjectReference.
 

Uses of ObjectReference in com.thoughtworks.proxy.toys.delegate
 

Methods in com.thoughtworks.proxy.toys.delegate that return ObjectReference
protected  ObjectReference<T> DelegatingInvoker.getDelegateReference()
          Retrieve the ObjectReference of the delegate.
 

Constructors in com.thoughtworks.proxy.toys.delegate with parameters of type ObjectReference
DelegatingInvoker(ProxyFactory proxyFactory, ObjectReference<T> delegateReference, DelegationMode delegationMode)
          Construct a DelegatingInvoker.
 

Uses of ObjectReference in com.thoughtworks.proxy.toys.dispatch
 

Constructors in com.thoughtworks.proxy.toys.dispatch with parameters of type ObjectReference
DispatchingInvoker(ProxyFactory proxyFactory, Class<?>[] types, ObjectReference<Object>[] delegateReferences)
          Construct a DispatchingInvoker.
 

Uses of ObjectReference in com.thoughtworks.proxy.toys.hotswap
 

Constructors in com.thoughtworks.proxy.toys.hotswap with parameters of type ObjectReference
HotSwappingInvoker(Class<?>[] types, ProxyFactory proxyFactory, ObjectReference<Object> delegateReference, DelegationMode delegationMode)
          Construct a HotSwappingInvoker.
 

Uses of ObjectReference in com.thoughtworks.proxy.toys.pool
 

Constructors in com.thoughtworks.proxy.toys.pool with parameters of type ObjectReference
Pool.PoolingInvoker(Pool<T> pool, ProxyFactory proxyFactory, ObjectReference<T> delegateReference, DelegationMode delegationMode)
          Construct a PoolingInvoker.
 

Uses of ObjectReference in com.thoughtworks.proxy.toys.privilege
 

Constructors in com.thoughtworks.proxy.toys.privilege with parameters of type ObjectReference
PrivilegingInvoker(ProxyFactory proxyFactory, ObjectReference<T> delegateReference, ActionExecutor executor)
          Construct the invoker.
 



Copyright © 2005-2010 Codehaus. All Rights Reserved.