|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.grails.commons.AbstractGrailsClass
public abstract class AbstractGrailsClass
Abstract base class for Grails types that provides common functionality for evaluating conventions within classes
Constructor Summary | |
---|---|
AbstractGrailsClass(Class clazz,
String trailingName)
Contructor to be used by all child classes to create a new instance and get the name right. |
Method Summary | |
---|---|
Class |
getClazz()
Returns the actual clazz represented by the GrailsClass |
String |
getFullName()
Returns the full name of the class in the application with the the trailing convention part and with the package name. |
String |
getLogicalPropertyName()
Returns the logical name of the class as a property name |
groovy.lang.MetaClass |
getMetaClass()
|
String |
getName()
Returns the logical name of the class in the application without the trailing convention part if applicable and without the package name. |
String |
getNaturalName()
Returns the name of the property in natural terms (eg. |
String |
getPackageName()
Returns the package name of the class. |
String |
getPropertyName()
Returns the name of the class as a property name |
protected Object |
getPropertyOrStaticPropertyOrFieldValue(String name,
Class type)
Looks for a property of the reference instance with a given name and type. |
Object |
getPropertyValue(String name)
Gets the initial value of the given property on the class |
Object |
getPropertyValue(String name,
Class type)
Get the value of the named property, with support for static properties in both Java and Groovy classes (which as of Groovy JSR 1.0 RC 01 only have getters in the metaClass) |
BeanWrapper |
getReference()
The reference instance is used to get configured property values. |
String |
getShortName()
Returns the short name of the class without package prefix |
boolean |
hasProperty(String name)
Returns true if the class has the specified property |
Object |
newInstance()
Creates a new instance of this class. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public AbstractGrailsClass(Class clazz, String trailingName)
Contructor to be used by all child classes to create a new instance and get the name right.
clazz
- the Grails classtrailingName
- the trailing part of the name for this class typeMethod Detail |
---|
public String getShortName()
GrailsClass
Returns the short name of the class without package prefix
getShortName
in interface GrailsClass
public Class getClazz()
GrailsClass
Returns the actual clazz represented by the GrailsClass
getClazz
in interface GrailsClass
public Object newInstance()
GrailsClass
Creates a new instance of this class.
This method can be used as factory method in the Spring application context.
newInstance
in interface GrailsClass
public String getName()
GrailsClass
Returns the logical name of the class in the application without the trailing convention part if applicable and without the package name.
getName
in interface GrailsClass
public String getNaturalName()
GrailsClass
Returns the name of the property in natural terms (eg. 'lastName' becomes 'Last Name')
getNaturalName
in interface GrailsClass
public String getFullName()
GrailsClass
Returns the full name of the class in the application with the the trailing convention part and with the package name.
getFullName
in interface GrailsClass
public String getPropertyName()
GrailsClass
Returns the name of the class as a property name
getPropertyName
in interface GrailsClass
public String getLogicalPropertyName()
GrailsClass
Returns the logical name of the class as a property name
getLogicalPropertyName
in interface GrailsClass
public String getPackageName()
GrailsClass
Returns the package name of the class.
getPackageName
in interface GrailsClass
public BeanWrapper getReference()
The reference instance is used to get configured property values.
getReference
in interface GrailsClass
protected Object getPropertyOrStaticPropertyOrFieldValue(String name, Class type)
Looks for a property of the reference instance with a given name and type.
If found its value is returned. We follow the Java bean conventions with augmentation for groovy support and static fields/properties. We will therefore match, in this order:
public Object getPropertyValue(String name, Class type)
getPropertyValue
in interface GrailsClass
name
- type
-
public Object getPropertyValue(String name)
GrailsClass
Gets the initial value of the given property on the class
getPropertyValue
in interface GrailsClass
name
- The name of the property
public boolean hasProperty(String name)
GrailsClass
Returns true if the class has the specified property
hasProperty
in interface GrailsClass
name
- The name of the property
public groovy.lang.MetaClass getMetaClass()
getMetaClass
in interface GrailsClass
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |