|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ArtefactInfo
Holder for all the class-related info and structures relating to an Artefact
Method Summary | |
---|---|
Class[] |
getClasses()
Gets you the array of all artefact Class(es), the original classes loaded that represent the artefacts. |
Map |
getClassesByName()
Gets you the unmodifiable Map of all artefact Class(es), the actual classes implementing the artefact. |
GrailsClass |
getGrailsClass(String name)
Retrieves the GrailsClass representing a named artefact. |
GrailsClass |
getGrailsClassByLogicalPropertyName(String logicalName)
Retrieves a Grails class by its logical property name. |
GrailsClass[] |
getGrailsClasses()
Gets you the array of all artefact GrailsClass(es), the classes used to track information about the artefact. |
Map |
getGrailsClassesByName()
Gets you the unmodifiable Map of all artefact GrailsClass(es), the classes that store extra state relating to the artefact. |
Method Detail |
---|
Class[] getClasses()
Gets you the array of all artefact Class(es), the original classes loaded that represent the artefacts.
GrailsClass[] getGrailsClasses()
Gets you the array of all artefact GrailsClass(es), the classes used to track information about the artefact.
Map getClassesByName()
Gets you the unmodifiable Map of all artefact Class(es), the actual classes implementing the artefact.
The Map is keyed by class name, i.e. "BookController"
Map getGrailsClassesByName()
Gets you the unmodifiable Map of all artefact GrailsClass(es), the classes that store extra state relating to the artefact.
The Map is keyed by class name, i.e. "BookController"
GrailsClass getGrailsClass(String name)
Retrieves the GrailsClass representing a named artefact.
From the GrailsClass you can get to the original artefact Class using getClazz().
name
- The name of the artefact, i.e. "BookController"
GrailsClass getGrailsClassByLogicalPropertyName(String logicalName)
logicalName
- The logical name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |