|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object groovy.lang.MetaProperty groovy.lang.MetaBeanProperty org.codehaus.groovy.runtime.metaclass.ThreadManagedMetaBeanProperty
public class ThreadManagedMetaBeanProperty extends MetaBeanProperty
This MetaBeanProperty will create a pseudo property whose value is bound to an object using weak references. The values will go out of scope and be garbage collected when the the object is collected In fact, this class should be called ExpandoProperty.
Field Summary |
---|
Fields inherited from class MetaProperty | |
---|---|
PROPERTY_SET_PREFIX, name, type |
Constructor Summary | |
ThreadManagedMetaBeanProperty(java.lang.Class declaringClass, java.lang.String name, java.lang.Class type, java.lang.Object iv)
Constructs a new ThreadManagedBeanProperty for the given arguments |
|
ThreadManagedMetaBeanProperty(java.lang.Class declaringClass, java.lang.String name, java.lang.Class type, Closure initialValueCreator)
Constructs a new ThreadManagedBeanProperty for the given arguments |
Method Summary | |
---|---|
MetaMethod
|
getGetter()
|
java.lang.Object
|
getInitialValue()
Retrieves the initial value of the ThreadBound property |
java.lang.Object
|
getInitialValue(java.lang.Object object)
|
MetaMethod
|
getSetter()
|
void
|
setInitialValueCreator(Closure callable)
Closure responsible for creating the initial value of thread-managed bean properties |
Methods inherited from class MetaBeanProperty | |
---|---|
getField, getGetter, getModifiers, getProperty, getSetter, setField, setProperty |
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 ThreadManagedMetaBeanProperty(java.lang.Class declaringClass, java.lang.String name, java.lang.Class type, java.lang.Object iv)
declaringClass
- The class that declares the propertyname
- The name of the propertytype
- The type of the propertyiv
- The properties initial value
public ThreadManagedMetaBeanProperty(java.lang.Class declaringClass, java.lang.String name, java.lang.Class type, Closure initialValueCreator)
declaringClass
- The class that declares the propertyname
- The name of the propertytype
- The type of the propertyinitialValueCreator
- The closure responsible for creating the initial value
Method Detail |
---|
public MetaMethod getGetter()
public java.lang.Object getInitialValue()
public java.lang.Object getInitialValue(java.lang.Object object)
public MetaMethod getSetter()
public void setInitialValueCreator(Closure callable)
callable
- The closure responsible for creating the initial value
Groovy Documentation