Holder for all the class-related info and structures relating to an Artefact.
Type Params | Return Type | Name and description |
---|---|---|
|
java.lang.Class[] |
getClasses() Gets you the array of all artefact Class(es), the original classes loaded that represent the artefacts. |
|
java.util.Map |
getClassesByName() Gets you the unmodifiable Map of all artefact Class(es), the actual classes implementing the artefact. |
|
GrailsClass |
getGrailsClass(java.lang.String name) |
|
GrailsClass |
getGrailsClassByLogicalPropertyName(java.lang.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. |
|
java.util.Map |
getGrailsClassesByName() |
Gets you the array of all artefact Class(es), the original classes loaded that represent the artefacts.
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"
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"Retrieves a Grails class by its logical property name. For example "BookController" would be "book".
logicalName
- The logical nameGets you the array of all artefact GrailsClass(es), the classes used to track information about the artefact.
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"