Class ExpandoMetaClass
- All Implemented Interfaces:
GroovyObject,MetaClass,MetaObjectProtocol,MutableMetaClass
Some examples of usage:
// defines or replaces instance method:
metaClass.myMethod = { args -> }
// defines a new instance method
metaClass.myMethod << { args -> }
// creates multiple overloaded methods of the same name
metaClass.myMethod << { String s -> } << { Integer i -> }
// defines or replaces a static method with the 'static' qualifier
metaClass.'static'.myMethod = { args -> }
// defines a new static method with the 'static' qualifier
metaClass.'static'.myMethod << { args -> }
// defines a new constructor
metaClass.constructor << { String arg -> }
// defines or replaces a constructor
metaClass.constructor = { String arg -> }
// defines a new property with an initial value of "blah"
metaClass.myProperty = "blah"
ExpandoMetaClass also supports a DSL/builder like notation to combine multiple definitions together. So instead of this:
Number.metaClass.multiply = { Amount amount -> amount.times(delegate) }
Number.metaClass.div = { Amount amount -> amount.inverse().times(delegate) }
You can also now do this:
Number.metaClass {
multiply { Amount amount -> amount.times(delegate) }
div { Amount amount -> amount.inverse().times(delegate) }
}
ExpandoMetaClass also supports runtime mixins. While @Mixin allows you to mix in new behavior
to classes you own and are designing, you can not easily mixin anything to types you didn't own, e.g.
from third party libraries or from JDK library classes.
Runtime mixins let you add a mixin on any type at runtime.
interface Vehicle {
String getName()
}
// Category annotation style
@Category(Vehicle) class FlyingAbility {
def fly() { "I'm the ${name} and I fly!" }
}
// traditional category style
class DivingAbility {
static dive(Vehicle self) { "I'm the ${self.name} and I dive!" }
}
// provided by a third-party, so can't augment using Mixin annotation
class JamesBondVehicle implements Vehicle {
String getName() { "James Bond's vehicle" }
}
// Can be added via metaClass, e.g.:
// JamesBondVehicle.metaClass.mixin DivingAbility, FlyingAbility
// Or using shorthand through DGM method on Class
JamesBondVehicle.mixin DivingAbility, FlyingAbility
assert new JamesBondVehicle().fly() ==
"I'm the James Bond's vehicle and I fly!"
assert new JamesBondVehicle().dive() ==
"I'm the James Bond's vehicle and I dive!"
As another example, consider the following class definitions:
class Student {
List schedule = []
def addLecture(String lecture) { schedule << lecture }
}
class Worker {
List schedule = []
def addMeeting(String meeting) { schedule << meeting }
}
We can mimic a form of multiple inheritance as follows:
class CollegeStudent {
static { mixin Student, Worker }
}
new CollegeStudent().with {
addMeeting('Performance review with Boss')
addLecture('Learn about Groovy Mixins')
println schedule
println mixedIn[Student].schedule
println mixedIn[Worker].schedule
}
Which outputs these lines when run:
[Performance review with Boss] [Learn about Groovy Mixins] [Performance review with Boss]Perhaps some explanation is required here. The methods and properties of Student and Worker are added to CollegeStudent. Worker is added last, so for overlapping methods, its methods will be used, e.g. when calling
schedule, it will be the schedule property (getSchedule method)
from Worker that is used. The schedule property from Student will be shadowed but the mixedIn
notation allows us to get to that too if we need as the last two lines show.
We can also be a little more dynamic and not require the CollegeStudent class to be defined at all, e.g.:
def cs = new Object()
cs.metaClass {
mixin Student, Worker
getSchedule {
mixedIn[Student].schedule + mixedIn[Worker].schedule
}
}
cs.with {
addMeeting('Performance review with Boss')
addLecture('Learn about Groovy Mixins')
println schedule
}
Which outputs this line when run:
[Learn about Groovy Mixins, Performance review with Boss]As another example, we can also define a no dup queue by mixing in some Queue and Set functionality as follows:
def ndq = new Object()
ndq.metaClass {
mixin ArrayDeque
mixin HashSet
leftShift = { Object o ->
if (!mixedIn[Set].contains(o)) {
mixedIn[Queue].push(o)
mixedIn[Set].add(o)
}
}
}
ndq << 1
ndq << 2
ndq << 1
assert ndq.size() == 2
As a final example, we sometimes need to pass such mixed in classes or objects
into Java methods which require a given static type but the ExpandoMetaClass mixin approach uses a very dynamic
approach based on duck typing rather than static interface definitions, so doesn't by default
produce objects matching the required static type. Luckily, there is a mixins capability
within ExpandoMetaClass which supports the use of Groovy's common 'as StaticType' notation to produce an object
having the correct static type so that it can be passed to the Java method call in question.
A slightly contrived example illustrating this feature:
class CustomComparator implements Comparator {
int compare(Object a, b) { return a.size() - b.size() }
}
class CustomCloseable implements Closeable {
void close() { println 'Lights out - I am closing' }
}
import static mypackage.IOUtils.closeQuietly
import static java.util.Collections.sort
def o = new Object()
o.metaClass.mixin CustomComparator, CustomCloseable
def items = ['a', 'bbb', 'cc']
sort(items, o as Comparator)
println items // => [a, cc, bbb]
closeQuietly(o as Closeable) // => Lights out - I am closing
Further details
When using the default implementations of MetaClass, methods are only allowed to be added before initialize() is called. In other words you create a new MetaClass, add some methods and then call initialize(). If you attempt to add new methods after initialize() has been called, an error will be thrown. This is to ensure that the MetaClass can operate appropriately in multithreaded environments as it forces you to do all method additions at the beginning, before using the MetaClass.
ExpandoMetaClass differs here from the default in that it allows you to add methods after initialize has been called. This is done by setting the initialize flag internally to false and then add the methods. Since this is not thread safe it has to be done in a synchronized block. The methods to check for modification and initialization are therefore synchronized as well. Any method call done through this metaclass will first check if the it is synchronized. Should this happen during a modification, then the method cannot be selected or called unless the modification is completed.
- Since:
- 1.5
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classHandles the ability to use the left shift operator to append new constructorsprotected classInstances of this class are returned when using the<<left shift operator.Nested classes/interfaces inherited from class groovy.lang.MetaClassImpl
MetaClassImpl.MetaConstructor -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringPseudo-property used by the expando DSL to define constructors.booleanIndicates whether this expando meta class is registered in the global registry.static final StringPseudo-property used by the expando DSL to define static members.Fields inherited from class groovy.lang.MetaClassImpl
EMPTY_ARGUMENTS, getPropertyMethod, INVOKE_METHOD_METHOD, invokeMethodMethod, isGroovyObject, isMap, metaMethodIndex, METHOD_MISSING, PROPERTY_MISSING, registry, setPropertyMethod, STATIC_METHOD_MISSING, STATIC_PROPERTY_MISSING, theCachedClass, theClass -
Constructor Summary
ConstructorsConstructorDescriptionExpandoMetaClass(MetaClassRegistry registry, Class theClass, boolean register, boolean allowChangesAfterInit, MetaMethod[] add) Creates an expando meta class bound to a specific registry.ExpandoMetaClass(Class theClass) Constructs a new ExpandoMetaClass instance for the given classExpandoMetaClass(Class theClass, boolean register) Constructs a new ExpandoMetaClass instance for the given class optionally placing the MetaClass in the MetaClassRegistry automaticallyExpandoMetaClass(Class theClass, boolean register, boolean allowChangesAfterInit) Constructs a new ExpandoMetaClass instance for the given class optionally placing the MetaClass in the MetaClassRegistry automaticallyExpandoMetaClass(Class theClass, boolean register, boolean allowChangesAfterInit, MetaMethod[] add) Creates an expando meta class with explicit registry behaviour and additional methods.ExpandoMetaClass(Class theClass, boolean register, MetaMethod[] add) Creates an expando meta class with optional global registration and additional initial methods.ExpandoMetaClass(Class theClass, MetaMethod[] add) Creates an unregistered expando meta class with additional initial methods. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaddMixinClass(MixinInMetaClass mixin) voidDeprecated.castToMixedType(Object obj, Class type) Returns the mixed-in view of an object for the requested mixin type.protected voidchecks if the initialisation of the class id complete.createConstructorSite(CallSite site, Object[] args) Create a CallSitecreatePogoCallCurrentSite(CallSite site, Class sender, String name, Object[] args) Creates a call site for current-scope POGO dispatch that honours expandoinvokeMethod.createPogoCallSite(CallSite site, Object[] args) Create a CallSitecreatePojoCallSite(CallSite site, Object receiver, Object[] args) Create a CallSitecreateStaticSite(CallSite site, Object[] args) Create a CallSiteExecutes the expando definition DSL against this meta class.static voidCall to disable the global use of ExpandoMetaClassstatic voidCall to enable global use of ExpandoMetaClass within the registry.findMixinMethod(String methodName, Class[] arguments) Searches for a matching mixin method.Returns a list of expando MetaMethod instances added to this ExpandoMetaClassReturns a list of MetaBeanProperty instances added to this ExpandoMetaClassReturns the subclass-scoped expando methods registered on this meta class.Returns the metaclass for a given class.getMetaProperty(String name) Looks up an existing MetaProperty by nameOverrides the behavior of parent getMethods() method to make MetaClass aware of added Expando methodsReturns the available properties for this type.getProperty(Class sender, Object object, String name, boolean useSuper, boolean fromInsideClass) Overrides default implementation just in case getProperty method has been overridden by ExpandoMetaClassgetProperty(Object object, String name) Overrides default implementation just in case getProperty method has been overridden by ExpandoMetaClassgetProperty(String property) Retrieves a property value.getPropertyForSetter(String setterName) Returns a property name equivalent for the given setter name or null if it is not a getterprotected ObjectgetSubclassMetaMethods(String methodName) Returns subclass-scoped meta methods contributed by specialized meta classes.booleanindicates is the metaclass method invocation for static methods is done through a custom invoker object.booleanhasMetaMethod(String name, Class[] args) Checks whether a MetaMethod for the given name and arguments existsbooleanhasMetaProperty(String name) Returns true if the MetaClass has the given propertyvoidComplete the initialisation process.invokeConstructor(Object[] arguments) Invokes a constructor for the given arguments.invokeMethod(Class sender, Object object, String methodName, Object[] originalArguments, boolean isCallToSuper, boolean fromInsideClass) Overrides default implementation just in case invokeMethod has been overridden by ExpandoMetaClassinvokeMethod(String name, Object args) Invokes the given method.invokeStaticMethod(Object object, String methodName, Object[] arguments) Overrides default implementation just in case a static invoke method has been set on ExpandoMetaClassprotected booleanChecks if the metaclass is initialized.booleanReturns whether this MetaClassImpl has been modified.booleanisSetter(String name, CachedClass[] args) Determines whether the supplied method signature represents a Groovy bean setter.static booleanisValidExpandoProperty(String property) Checks whether a property name is available for the expando DSL.protected voidCallback invoked when agetPropertyimplementation is discovered.protected voidCallback invoked when aninvokeMethodimplementation is discovered.protected voidCallback invoked when asetPropertyimplementation is discovered.protected voidCallback invoked when a super-class method is discovered during initialization.protected voidCallback invoked when a super-class bean property is discovered during initialization.protected voidperformOperationOnMetaClass(Runnable runner) Performs a mutating expando operation while coordinating initialization state and locks.voidrefreshInheritedMethods(Set modifiedSuperExpandos) Called from ExpandoMetaClassCreationHandle in the registry if it exists to set up inheritance handlingvoidregisterBeanProperty(String property, Object newValue) Registers a new bean property.voidregisterInstanceMethod(MetaMethod metaMethod) Registers a new instance method.voidregisterInstanceMethod(String name, Closure closure) Registers a new instance method.protected voidregisterStaticMethod(String name, Closure callable) Registers a new static expando method using the closure's declared parameter types.protected voidregisterStaticMethod(String name, Closure callable, Class[] paramTypes) Registers a new static method for the given method name and closure on this MetaClassvoidregisterSubclassInstanceMethod(MetaMethod metaMethod) Registers a subclass-scoped meta method.voidregisterSubclassInstanceMethod(String name, Class klazz, Closure closure) Registers an instance method contribution that only applies to the supplied subclass.retrieveConstructor(Object[] args) This is a helper method which is used only by indy.protected voidsetInitialized(boolean b) Updates the initialization flag for this meta class.voidsetMetaClass(MetaClass metaClass) Allows the MetaClass to be replaced with a derived implementation.voidsetProperty(Class sender, Object object, String name, Object newValue, boolean useSuper, boolean fromInsideClass) Overrides default implementation just in case setProperty method has been overridden by ExpandoMetaClassvoidsetProperty(String property, Object newValue) Sets the given property to the new value.Methods inherited from class groovy.lang.MetaClassImpl
addMetaBeanProperty, addMetaMethod, addMetaMethodToIndex, addNewInstanceMethod, addNewStaticMethod, applyPropertyDescriptors, checkIfGroovyObjectMethod, chooseMethod, clearInvocationCaches, createErrorMessageForAmbiguity, createPogoCallCurrentSite, createTransformMetaMethod, doChooseMostSpecificParams, dropMethodCache, dropStaticMethodCache, findMethodInClassHierarchy, findOwnMethod, findPropertyInClassHierarchy, getAdditionalMetaMethods, getAttribute, getAttribute, getAttribute, getClassInfo, getClassNode, getEffectiveGetMetaProperty, getMetaMethod, getMetaMethods, getMethodWithCaching, getMethodWithoutCaching, getNonClosureOuter, getRegistry, getStaticMetaMethod, getSuperClasses, getTheCachedClass, getTheClass, getVersion, handleMatches, hasCustomInvokeMethod, hasProperty, incVersion, invokeMethod, invokeMethod, invokeMissingMethod, invokeMissingProperty, invokeStaticMissingProperty, isGroovyObject, isPermissivePropertyAccess, onMixinMethodFound, pickMethod, reinitialize, respondsTo, respondsTo, retrieveConstructor, retrieveStaticMethod, selectConstructorAndTransformArguments, setAttribute, setAttribute, setPermissivePropertyAccess, setProperties, setProperty, toString
-
Field Details
-
CONSTRUCTOR
Pseudo-property used by the expando DSL to define constructors.- See Also:
-
STATIC_QUALIFIER
Pseudo-property used by the expando DSL to define static members.- See Also:
-
inRegistry
public boolean inRegistryIndicates whether this expando meta class is registered in the global registry.
-
-
Constructor Details
-
ExpandoMetaClass
public ExpandoMetaClass(Class theClass, boolean register, boolean allowChangesAfterInit, MetaMethod[] add) Creates an expando meta class with explicit registry behaviour and additional methods.- Parameters:
theClass- the enhanced classregister- whether the meta class should be registered globallyallowChangesAfterInit- whether mutation is allowed after initializationadd- additional meta methods to seed the meta class with
-
ExpandoMetaClass
public ExpandoMetaClass(MetaClassRegistry registry, Class theClass, boolean register, boolean allowChangesAfterInit, MetaMethod[] add) Creates an expando meta class bound to a specific registry.- Parameters:
registry- the meta class registry to work withtheClass- the enhanced classregister- whether the meta class should be registered globallyallowChangesAfterInit- whether mutation is allowed after initializationadd- additional meta methods to seed the meta class with
-
ExpandoMetaClass
Constructs a new ExpandoMetaClass instance for the given class- Parameters:
theClass- The class that the MetaClass applies to
-
ExpandoMetaClass
Creates an unregistered expando meta class with additional initial methods.- Parameters:
theClass- the enhanced classadd- additional meta methods to seed the meta class with
-
ExpandoMetaClass
Constructs a new ExpandoMetaClass instance for the given class optionally placing the MetaClass in the MetaClassRegistry automatically- Parameters:
theClass- The class that the MetaClass applies toregister- True if the MetaClass should be registered inside the MetaClassRegistry. This defaults to true and ExpandoMetaClass will affect all instances if changed
-
ExpandoMetaClass
Creates an expando meta class with optional global registration and additional initial methods.- Parameters:
theClass- the enhanced classregister- whether the meta class should be registered globallyadd- additional meta methods to seed the meta class with
-
ExpandoMetaClass
Constructs a new ExpandoMetaClass instance for the given class optionally placing the MetaClass in the MetaClassRegistry automatically- Parameters:
theClass- The class that the MetaClass applies toregister- True if the MetaClass should be registered inside the MetaClassRegistry. This defaults to true and ExpandoMetaClass will affect all instances if changedallowChangesAfterInit- Should the metaclass be modifiable after initialization. Default is false.
-
-
Method Details
-
findMixinMethod
Searches for a matching mixin method.- Overrides:
findMixinMethodin classMetaClassImpl- Parameters:
methodName- the method namearguments- the parameter types- Returns:
- the matching mixin method, or
nullif none is found
-
onInvokeMethodFoundInHierarchy
Callback invoked when aninvokeMethodimplementation is discovered.- Overrides:
onInvokeMethodFoundInHierarchyin classMetaClassImpl- Parameters:
method- the discovered handler
-
onSuperMethodFoundInHierarchy
Callback invoked when a super-class method is discovered during initialization.- Overrides:
onSuperMethodFoundInHierarchyin classMetaClassImpl- Parameters:
method- the inherited method
-
onSuperPropertyFoundInHierarchy
Callback invoked when a super-class bean property is discovered during initialization.- Overrides:
onSuperPropertyFoundInHierarchyin classMetaClassImpl- Parameters:
property- the inherited property
-
onSetPropertyFoundInHierarchy
Callback invoked when asetPropertyimplementation is discovered.- Overrides:
onSetPropertyFoundInHierarchyin classMetaClassImpl- Parameters:
method- the discovered handler
-
onGetPropertyFoundInHierarchy
Callback invoked when agetPropertyimplementation is discovered.- Overrides:
onGetPropertyFoundInHierarchyin classMetaClassImpl- Parameters:
method- the discovered handler
-
isModified
public boolean isModified()Returns whether this MetaClassImpl has been modified. Since MetaClassImpl is not designed for modification this method always returns false- Specified by:
isModifiedin interfaceMutableMetaClass- Overrides:
isModifiedin classMetaClassImpl- Returns:
- false
-
registerSubclassInstanceMethod
Registers an instance method contribution that only applies to the supplied subclass.- Parameters:
name- the method nameklazz- the subclass receiving the methodclosure- the implementation closure
-
registerSubclassInstanceMethod
Registers a subclass-scoped meta method.- Parameters:
metaMethod- the method to register
-
addMixinClass$$bridge
Deprecated.Legacy bridge retained for binary compatibility with earlier expando mixin APIs.- Parameters:
mixin- the mixin definition to add
-
addMixinClass
- Since:
- 6.0.0
-
castToMixedType
Returns the mixed-in view of an object for the requested mixin type.- Parameters:
obj- the receiver objecttype- the requested mixin type- Returns:
- the mixin instance, or
nullif the type is not mixed in
-
enableGlobally
public static void enableGlobally()Call to enable global use of ExpandoMetaClass within the registry. This has the advantage that inheritance will function correctly and metaclass modifications will also apply to existing objects, but has a higher memory usage on the JVM than normal Groovy -
disableGlobally
public static void disableGlobally()Call to disable the global use of ExpandoMetaClass -
initialize
public void initialize()Complete the initialisation process. After this method is called no methods should be added to the metaclass. Invocation of methods or access to fields/properties is forbidden unless this method is called. This method should contain any initialisation code, taking a longer time to complete. An example is the creation of the Reflector. It is suggested to synchronize this method.- Specified by:
initializein interfaceMetaClass- Overrides:
initializein classMetaClassImpl
-
isInitialized
protected boolean isInitialized()Checks if the metaclass is initialized.- Overrides:
isInitializedin classMetaClassImpl- Returns:
trueonce initialization completed- See Also:
-
setInitialized
protected void setInitialized(boolean b) Updates the initialization flag for this meta class.- Overrides:
setInitializedin classMetaClassImpl- Parameters:
b- the new initialization state
-
invokeConstructor
Invokes a constructor for the given arguments. The MetaClass will attempt to pick the best argument which matches the types of the objects passed within the arguments array- Specified by:
invokeConstructorin interfaceMetaObjectProtocol- Overrides:
invokeConstructorin classMetaClassImpl- Parameters:
arguments- The arguments to the constructor- Returns:
- An instance of the java.lang.Class that this MetaObjectProtocol object applies to
-
getMetaClass
Returns the metaclass for a given class.- Specified by:
getMetaClassin interfaceGroovyObject- Returns:
- the metaClass of this instance
-
getProperty
Retrieves a property value.- Specified by:
getPropertyin interfaceGroovyObject- Parameters:
property- the name of the property of interest- Returns:
- the given property
-
isValidExpandoProperty
Checks whether a property name is available for the expando DSL.- Parameters:
property- the property name to test- Returns:
trueif the name can be used by the expando DSL
-
invokeMethod
Invokes the given method.- Specified by:
invokeMethodin interfaceGroovyObject- Parameters:
name- the name of the method to callargs- the arguments to use for the method call- Returns:
- the result of invoking the method
-
setMetaClass
Allows the MetaClass to be replaced with a derived implementation.- Specified by:
setMetaClassin interfaceGroovyObject- Parameters:
metaClass- the new metaclass
-
setProperty
Sets the given property to the new value.- Specified by:
setPropertyin interfaceGroovyObject- Parameters:
property- the name of the property of interestnewValue- the new value for the property
-
define
public ExpandoMetaClass define(@ClosureParams(value=SimpleType.class,options="java.lang.Object") @DelegatesTo(value=groovy.lang.ExpandoMetaClass.DefiningClosure.class,strategy=3) Closure closure) Executes the expando definition DSL against this meta class.- Parameters:
closure- the definition closure- Returns:
- this meta class
-
performOperationOnMetaClass
Performs a mutating expando operation while coordinating initialization state and locks.- Parameters:
runner- the operation to execute
-
checkInitalised
protected void checkInitalised()checks if the initialisation of the class id complete. This method should be called as a form of assert, it is no way to test if there is still initialisation work to be done. Such logic must be implemented in a different way.- Overrides:
checkInitalisedin classMetaClassImpl
-
registerBeanProperty
Registers a new bean property.- Parameters:
property- the property namenewValue- the properties initial value
-
registerInstanceMethod
Registers a new instance method.- Parameters:
name- the method name or"constructor"for a constructorclosure- the implementation
-
registerInstanceMethod
Registers a new instance method. -
getMethods
Overrides the behavior of parent getMethods() method to make MetaClass aware of added Expando methods- Specified by:
getMethodsin interfaceMetaClass- Specified by:
getMethodsin interfaceMetaObjectProtocol- Overrides:
getMethodsin classMetaClassImpl- Returns:
- A list of MetaMethods
- See Also:
-
getProperties
Returns the available properties for this type.- Specified by:
getPropertiesin interfaceMetaClass- Specified by:
getPropertiesin interfaceMetaObjectProtocol- Overrides:
getPropertiesin classMetaClassImpl- Returns:
- a list of
MetaPropertyobjects - See Also:
-
registerStaticMethod
Registers a new static expando method using the closure's declared parameter types.- Parameters:
name- the method namecallable- the implementation closure
-
registerStaticMethod
Registers a new static method for the given method name and closure on this MetaClass- Parameters:
name- The method namecallable- The callable Closure
-
getSubclassMetaMethods
Returns subclass-scoped meta methods contributed by specialized meta classes.- Overrides:
getSubclassMetaMethodsin classMetaClassImpl- Parameters:
methodName- the method name- Returns:
- subclass methods for the name, or
nullif none are registered
-
getJavaClass
- Returns:
- The Java class enhanced by this MetaClass
-
refreshInheritedMethods
Called from ExpandoMetaClassCreationHandle in the registry if it exists to set up inheritance handling- Parameters:
modifiedSuperExpandos- A list of modified super ExpandoMetaClass
-
getExpandoMethods
Returns a list of expando MetaMethod instances added to this ExpandoMetaClass- Returns:
- the expandoMethods
-
getExpandoSubclassMethods
Returns the subclass-scoped expando methods registered on this meta class.- Returns:
- an unmodifiable view of the registered subclass method entries
-
getExpandoProperties
Returns a list of MetaBeanProperty instances added to this ExpandoMetaClass- Returns:
- the expandoProperties
-
invokeMethod
public Object invokeMethod(Class sender, Object object, String methodName, Object[] originalArguments, boolean isCallToSuper, boolean fromInsideClass) Overrides default implementation just in case invokeMethod has been overridden by ExpandoMetaClass- Specified by:
invokeMethodin interfaceMetaClass- Overrides:
invokeMethodin classMetaClassImpl- Parameters:
sender- The java.lang.Class instance that invoked the methodobject- The object which the method was invoked onmethodName- The name of the methodoriginalArguments- The arguments to the methodisCallToSuper- Whether the method is a call to a super class methodfromInsideClass- Whether the call was invoked from the inside or the outside of the class- Returns:
- The return value of the method.
- See Also:
-
invokeStaticMethod
Overrides default implementation just in case a static invoke method has been set on ExpandoMetaClass- Specified by:
invokeStaticMethodin interfaceMetaObjectProtocol- Overrides:
invokeStaticMethodin classMetaClassImpl- Parameters:
object- An instance of the class returned by the getTheClass() method or the class itselfmethodName- The name of the methodarguments- The arguments to the method- Returns:
- The return value of the method which is null if the return type is void
- See Also:
-
getProperty
public Object getProperty(Class sender, Object object, String name, boolean useSuper, boolean fromInsideClass) Overrides default implementation just in case getProperty method has been overridden by ExpandoMetaClass- Specified by:
getPropertyin interfaceMetaClass- Overrides:
getPropertyin classMetaClassImpl- Parameters:
sender- The java.lang.Class instance that requested the propertyobject- The Object which the property is being retrieved fromname- The name of the propertyuseSuper- Whether the call is to a super class propertyfromInsideClass- ??- Returns:
- The property's value.
- See Also:
-
getProperty
Overrides default implementation just in case getProperty method has been overridden by ExpandoMetaClass- Specified by:
getPropertyin interfaceMetaObjectProtocol- Overrides:
getPropertyin classMetaClassImpl- Parameters:
object- The Object which the property is being retrieved fromname- The name of the property- Returns:
- The properties value
- See Also:
-
setProperty
public void setProperty(Class sender, Object object, String name, Object newValue, boolean useSuper, boolean fromInsideClass) Overrides default implementation just in case setProperty method has been overridden by ExpandoMetaClass- Specified by:
setPropertyin interfaceMetaClass- Overrides:
setPropertyin classMetaClassImpl- Parameters:
sender- The java.lang.Class instance that is mutating the propertyobject- The Object which the property is being set onname- The name of the propertynewValue- The new value of the property to setuseSuper- Whether the call is to a super class propertyfromInsideClass- Whether the call was invoked from the inside or the outside of the class.- See Also:
-
getMetaProperty
Looks up an existing MetaProperty by name- Specified by:
getMetaPropertyin interfaceMetaObjectProtocol- Overrides:
getMetaPropertyin classMetaClassImpl- Parameters:
name- The name of the MetaProperty- Returns:
- The MetaProperty or null if it doesn't exist
- See Also:
-
hasMetaProperty
Returns true if the MetaClass has the given property- Parameters:
name- The name of the MetaProperty- Returns:
- True it exists as a MetaProperty
-
hasMetaMethod
Checks whether a MetaMethod for the given name and arguments exists- Parameters:
name- The name of the MetaMethodargs- The arguments to the meta method- Returns:
- True if the method exists otherwise null
-
getPropertyForSetter
Returns a property name equivalent for the given setter name or null if it is not a getter- Parameters:
setterName- The setter name- Returns:
- The property name equivalent
-
isSetter
Determines whether the supplied method signature represents a Groovy bean setter.- Parameters:
name- the candidate method nameargs- the candidate parameter types- Returns:
trueif the signature represents a setter
-
createPojoCallSite
Create a CallSite- Overrides:
createPojoCallSitein classMetaClassImpl
-
createStaticSite
Create a CallSite- Overrides:
createStaticSitein classMetaClassImpl
-
hasCustomStaticInvokeMethod
public boolean hasCustomStaticInvokeMethod()indicates is the metaclass method invocation for static methods is done through a custom invoker object.- Overrides:
hasCustomStaticInvokeMethodin classMetaClassImpl- Returns:
- true - if the method invocation is not done by the metaclass itself
-
createPogoCallSite
Create a CallSite- Overrides:
createPogoCallSitein classMetaClassImpl
-
createPogoCallCurrentSite
Creates a call site for current-scope POGO dispatch that honours expandoinvokeMethod.- Parameters:
site- the original call sitesender- the calling classname- the method name being invokedargs- the invocation arguments- Returns:
- the adapted call site
-
retrieveConstructor
This is a helper method which is used only by indy. It is for internal use.- Overrides:
retrieveConstructorin classMetaClassImpl
-
createConstructorSite
Create a CallSite- Overrides:
createConstructorSitein classMetaClassImpl
-
addMixinClass(MixinInMetaClass)