public class MockProxyMetaClass extends ProxyMetaClass
Modifiers | Name | Description |
---|---|---|
boolean |
interceptConstruction |
Fields inherited from class | Fields |
---|---|
class ProxyMetaClass |
adaptee, interceptor |
class MetaClassImpl |
EMPTY_ARGUMENTS, INVOKE_METHOD_METHOD, METHOD_MISSING, PROPERTY_MISSING, STATIC_METHOD_MISSING, STATIC_PROPERTY_MISSING, getPropertyMethod, invokeMethodMethod, isGroovyObject, isMap, metaMethodIndex, registry, setPropertyMethod, theCachedClass, theClass |
Constructor and description |
---|
MockProxyMetaClass
(MetaClassRegistry registry, Class theClass, MetaClass adaptee)
|
MockProxyMetaClass
(MetaClassRegistry registry, Class theClass, MetaClass adaptee, boolean interceptConstruction)
|
Type Params | Return Type | Name and description |
---|---|---|
|
Object |
getProperty(Class aClass, Object object, String property, boolean b, boolean b1) |
|
Object |
invokeConstructor(Object[] arguments) Unlike general impl in superclass, ctors are not intercepted but relayed unless interceptConstruction is set. |
|
Object |
invokeMethod(Object object, String methodName, Object[] arguments) |
|
Object |
invokeStaticMethod(Object object, String methodName, Object[] arguments) |
|
static MockProxyMetaClass |
make(Class theClass) convenience factory method for the most usual case. |
|
static MockProxyMetaClass |
make(Class theClass, boolean interceptConstruction) convenience factory method allowing interceptConstruction to be set. |
|
void |
setProperty(Class aClass, Object object, String property, Object newValue, boolean b, boolean b1) |
Methods inherited from class | Name |
---|---|
class ProxyMetaClass |
getAdaptee, getInstance, getInterceptor, getProperty, initialize, invokeConstructor, invokeMethod, invokeMethod, invokeStaticMethod, setAdaptee, setInterceptor, setProperty, use, use |
class MetaClassImpl |
getMetaMethod, getMetaProperty, getRegistry, getStaticMetaMethod, getSuperClasses, getTheCachedClass, getTheClass, hasProperty, isGroovyObject, methodNameAction, respondsTo, respondsTo, skipClass |
adaptee
- the MetaClass to decorate with interceptability
adaptee
- the MetaClass to decorate with interceptabilityUnlike general impl in superclass, ctors are not intercepted but relayed unless interceptConstruction is set.
convenience factory method for the most usual case.
convenience factory method allowing interceptConstruction to be set.
Copyright © 2003-2020 The Apache Software Foundation. All rights reserved.