Package org.codehaus.groovy.reflection
Class CachedField
- java.lang.Object
- 
- groovy.lang.MetaProperty
- 
- org.codehaus.groovy.reflection.CachedField
 
 
- 
 public class CachedField extends MetaProperty 
- 
- 
Field SummaryFields Modifier and Type Field Description java.lang.reflect.Fieldfield- 
Fields inherited from class groovy.lang.MetaPropertyname, PROPERTY_SET_PREFIX, type
 
- 
 - 
Constructor SummaryConstructors Constructor Description CachedField(java.lang.reflect.Field field)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetModifiers()Returns the access modifier.java.lang.ObjectgetProperty(java.lang.Object object)booleanisFinal()booleanisStatic()voidsetProperty(java.lang.Object object, java.lang.Object newValue)Sets the property on the given object to the new value- 
Methods inherited from class groovy.lang.MetaPropertygetGetterName, getName, getSetterName, getType
 
- 
 
- 
- 
- 
Method Detail- 
isStaticpublic boolean isStatic() 
 - 
isFinalpublic boolean isFinal() 
 - 
getModifierspublic int getModifiers() Description copied from class:MetaPropertyReturns the access modifier.- Overrides:
- getModifiersin class- MetaProperty
- Returns:
- Modifier.PUBLIC
 
 - 
getPropertypublic java.lang.Object getProperty(java.lang.Object object) - Specified by:
- getPropertyin class- MetaProperty
- Returns:
- the property of the given object
- Throws:
- java.lang.RuntimeException- if the property could not be evaluated
 
 - 
setPropertypublic void setProperty(java.lang.Object object, java.lang.Object newValue)Sets the property on the given object to the new value- Specified by:
- setPropertyin class- MetaProperty
- Parameters:
- object- on which to set the property
- newValue- the new value of the property
- Throws:
- java.lang.RuntimeException- if the property could not be set
 
 
- 
 
-