| 
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectgroovy.lang.MetaProperty
groovy.lang.MetaBeanProperty
public class MetaBeanProperty extends MetaProperty
Represents a property on a bean which may have a getter and/or a setter
| Field Summary | 
|---|
| Fields inherited from class MetaProperty | |
|---|---|
| PROPERTY_SET_PREFIX, name, type | 
| Constructor Summary | |
            MetaBeanProperty(java.lang.String name, java.lang.Class type, MetaMethod getter, MetaMethod setter)
             | 
        |
| Method Summary | |
|---|---|
            CachedField
         | 
        
            getField()
             | 
        
            MetaMethod
         | 
        
            getGetter()
            Get the getter method.  | 
        
            int
         | 
        
            getModifiers()
             | 
        
            java.lang.Object
         | 
        
            getProperty(java.lang.Object object)
            Get the property of the given object.  | 
        
            MetaMethod
         | 
        
            getSetter()
            Get the setter method.  | 
        
            void
         | 
        
            setField(CachedField f)
             | 
        
            void
         | 
        
            setProperty(java.lang.Object object, java.lang.Object newValue)
            Set the property on the given object to the new value.  | 
        
| Methods inherited from class MetaProperty | |
|---|---|
| getGetterName, getModifiers, getName, getProperty, getSetterName, getType, setProperty | 
| Methods inherited from class java.lang.Object | |
|---|---|
| java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() | 
| Constructor Detail | 
|---|
public MetaBeanProperty(java.lang.String name, java.lang.Class type, MetaMethod getter, MetaMethod setter)
| Method Detail | 
|---|
public CachedField getField()
public MetaMethod getGetter()
public int getModifiers()
public java.lang.Object getProperty(java.lang.Object object)
object -  which to be got
public MetaMethod getSetter()
public void setField(CachedField f)
public void setProperty(java.lang.Object object, java.lang.Object newValue)
object -    on which to set the propertynewValue -  the new value of the property
Groovy Documentation