Package grails.compiler.ast
Interface GrailsDomainClassInjector
-
- All Superinterfaces:
ClassInjector
- All Known Implementing Classes:
DefaultGrailsDomainClassInjector
public interface GrailsDomainClassInjector extends ClassInjector
Mainly just a marker interface for implementations that perform injection on domain classes.- Since:
- 0.2
-
-
Field Summary
-
Fields inherited from interface grails.compiler.ast.ClassInjector
PRIVATE_STATIC_MODIFIER
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidperformInjectionOnAnnotatedEntity(org.codehaus.groovy.ast.ClassNode classNode)Doesn't check with the specified ClassNode is a valid entity and assumes it is and proceeds with the injection regardless.-
Methods inherited from interface grails.compiler.ast.ClassInjector
performInjection, performInjection, performInjectionOnAnnotatedClass, shouldInject
-
-
-
-
Method Detail
-
performInjectionOnAnnotatedEntity
void performInjectionOnAnnotatedEntity(org.codehaus.groovy.ast.ClassNode classNode)
Doesn't check with the specified ClassNode is a valid entity and assumes it is and proceeds with the injection regardless.- Parameters:
classNode- The ClassNode- Since:
- 1.1
-
-