Class PojoWrapper
java.lang.Object
org.codehaus.groovy.runtime.wrappers.Wrapper
org.codehaus.groovy.runtime.wrappers.PojoWrapper
- All Implemented Interfaces:
GroovyObject
- Direct Known Subclasses:
BooleanWrapper
,ByteWrapper
,CharWrapper
,DoubleWrapper
,FloatWrapper
,IntWrapper
,LongWrapper
,ShortWrapper
-
Field Summary
Fields inherited from class org.codehaus.groovy.runtime.wrappers.Wrapper
constrainedType
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected MetaClass
getProperty
(String property) Retrieves a property value.protected Object
invokeMethod
(String methodName, Object arguments) Invokes the given method.void
setMetaClass
(MetaClass metaClass) Allows the MetaClass to be replaced with a derived implementation.void
setProperty
(String property, Object newValue) Sets the given property to the new value.unwrap()
Methods inherited from class org.codehaus.groovy.runtime.wrappers.Wrapper
getMetaClass, getType
-
Field Details
-
delegate
-
wrapped
-
-
Constructor Details
-
PojoWrapper
-
-
Method Details
-
unwrap
-
getProperty
Description copied from interface:GroovyObject
Retrieves a property value.- Parameters:
property
- the name of the property of interest- Returns:
- the given property
-
invokeMethod
Description copied from interface:GroovyObject
Invokes the given method.- Parameters:
methodName
- the name of the method to callarguments
- the arguments to use for the method call- Returns:
- the result of invoking the method
-
setMetaClass
Description copied from interface:GroovyObject
Allows the MetaClass to be replaced with a derived implementation.- Parameters:
metaClass
- the new metaclass
-
setProperty
Description copied from interface:GroovyObject
Sets the given property to the new value.- Parameters:
property
- the name of the property of interestnewValue
- the new value for the property
-
getWrapped
- Specified by:
getWrapped
in classWrapper
-
getDelegatedMetaClass
- Specified by:
getDelegatedMetaClass
in classWrapper
-