public interface GroovyObject
The interface implemented by all Groovy objects.
Especially handy for using Groovy objects when in the Java world.
Type Params | Return Type | Name and description |
---|---|---|
|
public MetaClass |
getMetaClass() Returns the metaclass for a given class. |
|
public Object |
getProperty(String propertyName) Retrieves a property value. |
|
public Object |
invokeMethod(String name, Object args) Invokes the given method. |
|
public void |
setMetaClass(MetaClass metaClass) Allows the MetaClass to be replaced with a derived implementation. |
|
public void |
setProperty(String propertyName, Object newValue) Sets the given property to the new value. |
Returns the metaclass for a given class.
Retrieves a property value.
propertyName
- the name of the property of interestInvokes the given method.
name
- the name of the method to callargs
- the arguments to use for the method callAllows the MetaClass to be replaced with a derived implementation.
metaClass
- the new metaclass