Package org.aspectj.lang.reflect
Interface InterTypeDeclaration
-
- All Known Subinterfaces:
InterTypeConstructorDeclaration,InterTypeFieldDeclaration,InterTypeMethodDeclaration
public interface InterTypeDeclarationRepresents an inter-type method, field, or constructor declared in an aspect.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AjType<?>getDeclaringType()The declaring aspectintgetModifiers()Member modifiers, can be interpreted using java.lang.reflect.ModifierAjType<?>getTargetType()The target type of this ITD
-
-
-
Method Detail
-
getDeclaringType
AjType<?> getDeclaringType()
The declaring aspect
-
getTargetType
AjType<?> getTargetType() throws java.lang.ClassNotFoundException
The target type of this ITD- Throws:
java.lang.ClassNotFoundException
-
getModifiers
int getModifiers()
Member modifiers, can be interpreted using java.lang.reflect.Modifier
-
-