|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.grails.commons.metaclass.AbstractDynamicProperty org.codehaus.groovy.grails.commons.metaclass.GenericDynamicProperty
public class GenericDynamicProperty extends AbstractDynamicProperty
A generic dyanmic property for any type.
Constructor Summary | |
GenericDynamicProperty(java.lang.String propertyName, java.lang.Class type, java.lang.Object initialValue, boolean readOnly)
@param propertyName The name of the property |
|
GenericDynamicProperty(java.lang.String propertyName, java.lang.Class type, boolean readOnly)
@param propertyName The name of the property |
|
GenericDynamicProperty(java.lang.String propertyName, java.lang.Class type, FunctionCallback initialValueGenerator, boolean readOnly)
|
Method Summary | |
---|---|
java.lang.Object
|
get(java.lang.Object object)
|
void
|
set(java.lang.Object object, java.lang.Object newValue)
|
Methods inherited from class AbstractDynamicProperty | |
---|---|
get, getPropertyName, isPropertyMatch, set |
Methods inherited from class java.lang.Object | |
---|---|
java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), 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 GenericDynamicProperty(java.lang.String propertyName, java.lang.Class type, java.lang.Object initialValue, boolean readOnly)
propertyName
- The name of the propertytype
- The type of the propertyinitialValue
- The initial value of the propertyreadOnly
- True for read-only property
public GenericDynamicProperty(java.lang.String propertyName, java.lang.Class type, boolean readOnly)
propertyName
- The name of the propertytype
- The type of the propertyreadOnly
- True for read-only property
public GenericDynamicProperty(java.lang.String propertyName, java.lang.Class type, FunctionCallback initialValueGenerator, boolean readOnly)
Variant that allows supply of a lazy-initialization function for the initial value.
This function is called only on the first access to the property for a given object, unless the function returns null in which case it will be called again if another request is made.
propertyName
- The name of the propertytype
- The type of the propertyreadOnly
- True for read-only property
Method Detail |
---|
@Override public java.lang.Object get(java.lang.Object object)
@Override public void set(java.lang.Object object, java.lang.Object newValue)
Groovy Documentation