Uses of Interface
com.thoughtworks.proxy.toys.decorate.InvocationDecorator

Packages that use InvocationDecorator
com.thoughtworks.proxy.toys.decorate A toy to decorate the interaction with another object. 
com.thoughtworks.proxy.toys.echo A toy to trace method calls to objects. 
 

Uses of InvocationDecorator in com.thoughtworks.proxy.toys.decorate
 

Classes in com.thoughtworks.proxy.toys.decorate that implement InvocationDecorator
 class InvocationDecoratorSupport
          Identity implementation for a InvokerDecorator.
 

Methods in com.thoughtworks.proxy.toys.decorate with parameters of type InvocationDecorator
static Object Decorating.object(Class[] types, Object delegate, InvocationDecorator decorator)
          Create a decorating proxy implementing specific types.
static Object Decorating.object(Class[] types, Object delegate, InvocationDecorator decorator, ProxyFactory factory)
          Create a decorating proxy implementing specific types using a provided ProxyFactory.
static Object Decorating.object(Class type, Object delegate, InvocationDecorator decorator)
          Create a decorating proxy implementing a specific type.
 

Constructors in com.thoughtworks.proxy.toys.decorate with parameters of type InvocationDecorator
DecoratingInvoker(Invoker decorated, InvocationDecorator decorator)
          Construct a DecoratingInvoker decorating another Invoker.
DecoratingInvoker(Object delegate, InvocationDecorator decorator)
          Construct a DecoratingInvoker decorating another object.
 

Uses of InvocationDecorator in com.thoughtworks.proxy.toys.echo
 

Classes in com.thoughtworks.proxy.toys.echo that implement InvocationDecorator
 class EchoDecorator
          A InvocationDecoratorSupport implementation that echoes any invocation to a PrintWriter.