Uses of Class
spin.Evaluator
-
Packages that use Evaluator Package Description spin spin.off spin.over spin.proxy -
-
Uses of Evaluator in spin
Methods in spin that return Evaluator Modifier and Type Method Description static Evaluator
Spin. getDefaultOffEvaluator()
Get the default evaluator for spin-off.static Evaluator
Spin. getDefaultOverEvaluator()
Get the default evaluator for spin-over.Methods in spin with parameters of type Evaluator Modifier and Type Method Description abstract java.lang.Object
ProxyFactory. createProxy(java.lang.Object object, Evaluator evaluator)
Create a proxy for the given object that evaluates invocations with the given evaluator.protected java.lang.Object
ProxyFactory. evaluteInvocation(Evaluator evaluator, java.lang.Object proxy, Invocation invocation)
Evaluate the given invocation with the given evaluator.static void
Spin. setDefaultOffEvaluator(Evaluator evaluator)
Set the default evaluator for spin-off.static void
Spin. setDefaultOverEvaluator(Evaluator evaluator)
Set the default evaluator for spin-over.Constructors in spin with parameters of type Evaluator Constructor Description Spin(java.lang.Object object, Evaluator evaluator)
Create a Spin wrapper for the given object.Spin(java.lang.Object object, ProxyFactory proxyFactory, Evaluator evaluator)
Create a Spin wrapper for the given object. -
Uses of Evaluator in spin.off
Subclasses of Evaluator in spin.off Modifier and Type Class Description class
ListenerSpinOver
An evaluator for spin-off that automatically spins-over all arguments of aSpinOffEvaluator
if their corresponding parameter types are subinterfaces ofjava.util.EventListener
.class
SpinOffEvaluator
An evaluator for spin-off, i.e.Constructors in spin.off with parameters of type Evaluator Constructor Description ListenerSpinOver(Evaluator evaluator)
Constructor. -
Uses of Evaluator in spin.over
Subclasses of Evaluator in spin.over Modifier and Type Class Description class
SpinOverEvaluator
An evaluator for spin-over, i.e. -
Uses of Evaluator in spin.proxy
Methods in spin.proxy with parameters of type Evaluator Modifier and Type Method Description java.lang.Object
CGLibProxyFactory. createProxy(java.lang.Object object, Evaluator evaluator)
java.lang.Object
JDKProxyFactory. createProxy(java.lang.Object object, Evaluator evaluator)
The created proxy will not implement non-public interfaces from different class loaders since these yield anIllegalAccessError
on construction of a proxy.
-