[Java] Class MockProxyMetaClass
- groovy.mock.interceptor.MockProxyMetaClass
The ProxyMetaClass for the MockInterceptor. Instance and class methods are intercepted, but constructors are not to allow mocking of aggregated objects.
- Authors:
- Dierk Koenig
Field Summary
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 |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
def |
MockProxyMetaClass(MetaClassRegistry registry, Class theClass, MetaClass adaptee) @param adaptee the MetaClass to decorate with interceptability | |
def |
MockProxyMetaClass(MetaClassRegistry registry, Class theClass, MetaClass adaptee, boolean interceptConstruction) @param adaptee the MetaClass to decorate with interceptability | |
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) |
Inherited Methods Summary
Field Detail
public final boolean interceptConstruction
Method Detail
public def MockProxyMetaClass(MetaClassRegistry registry, Class theClass, MetaClass adaptee)
- Parameters:
-
adaptee
- the MetaClass to decorate with interceptability
public def MockProxyMetaClass(MetaClassRegistry registry, Class theClass, MetaClass adaptee, boolean interceptConstruction)
- Parameters:
-
adaptee
- the MetaClass to decorate with interceptability
public Object getProperty(Class aClass, Object object, String property, boolean b, boolean b1)
public Object invokeConstructor(Object[] arguments)
Unlike general impl in superclass, ctors are not intercepted but relayed unless interceptConstruction is set.
public Object invokeMethod(Object object, String methodName, Object[] arguments)
public Object invokeStaticMethod(Object object, String methodName, Object[] arguments)
public static MockProxyMetaClass make(Class theClass)
convenience factory method for the most usual case.
public static MockProxyMetaClass make(Class theClass, boolean interceptConstruction)
convenience factory method allowing interceptConstruction to be set.
public void setProperty(Class aClass, Object object, String property, Object newValue, boolean b, boolean b1)
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/2.4.21/html/gapi/groovy/mock/interceptor/MockProxyMetaClass.html