Package groovy.lang
Class ExpandoMetaClass.ExpandoMetaProperty
- java.lang.Object
-
- groovy.lang.GroovyObjectSupport
-
- groovy.lang.ExpandoMetaClass.ExpandoMetaProperty
-
- All Implemented Interfaces:
GroovyObject
- Enclosing class:
- ExpandoMetaClass
protected class ExpandoMetaClass.ExpandoMetaProperty extends GroovyObjectSupport
Instances of this class are returned when using the<<
left shift operator.Example:
metaClass.myMethod
<<
{ String args->
}This allows callbacks to the ExpandoMetaClass for registering appending methods
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
isStatic
protected String
propertyName
-
Constructor Summary
Constructors Modifier Constructor Description protected
ExpandoMetaProperty(String name)
protected
ExpandoMetaProperty(String name, boolean isStatic)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getProperty(String property)
Retrieves a property value.String
getPropertyName()
boolean
isStatic()
Object
leftShift(Object arg)
void
setProperty(String property, Object newValue)
Sets the given property to the new value.-
Methods inherited from class groovy.lang.GroovyObjectSupport
getMetaClass, invokeMethod, setMetaClass
-
-
-
-
Field Detail
-
propertyName
protected String propertyName
-
isStatic
protected boolean isStatic
-
-
Method Detail
-
getPropertyName
public String getPropertyName()
-
isStatic
public boolean isStatic()
-
getProperty
public Object getProperty(String property)
Description copied from interface:GroovyObject
Retrieves a property value.- Specified by:
getProperty
in interfaceGroovyObject
- Overrides:
getProperty
in classGroovyObjectSupport
- Parameters:
property
- the name of the property of interest- Returns:
- the given property
-
setProperty
public void setProperty(String property, Object newValue)
Description copied from interface:GroovyObject
Sets the given property to the new value.- Specified by:
setProperty
in interfaceGroovyObject
- Overrides:
setProperty
in classGroovyObjectSupport
- Parameters:
property
- the name of the property of interestnewValue
- the new value for the property
-
-