| Package | Description | 
|---|---|
| griffon.util | 
 Groovy specific utility classes 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Object | 
GriffonClassUtils.getPropertyValue(Object bean,
                String name)
Returns the value of a property. 
 | 
static void | 
GriffonClassUtils.setProperties(Object bean,
             Map<String,Object> properties)
Sets or updates properties on an object. 
 | 
static void | 
GriffonClassUtils.setPropertiesOrFields(Object bean,
                     Map<String,Object> properties)
Sets or updates an object's properties. 
 | 
static void | 
GriffonClassUtils.setProperty(Object bean,
           String name,
           Object value)
Sets the value of the specified property of the specified bean. 
 | 
static void | 
GriffonClassUtils.setPropertyOrFieldValue(Object bean,
                       String name,
                       Object value)
Sets or updates an object's property. 
 | 
static void | 
GriffonClassUtils.setPropertyValue(Object bean,
                String name,
                Object value)
/**
 Sets or updates a property on an object. 
 |