Uses of Interface
org.aspectj.lang.reflect.Advice

Packages that use Advice
org.aspectj.internal.lang.reflect   
org.aspectj.lang.reflect Contains interfaces that extend Signature to provide additional information about each possible join point signature. 
 

Uses of Advice in org.aspectj.internal.lang.reflect
 

Classes in org.aspectj.internal.lang.reflect that implement Advice
 class AdviceImpl
           
 

Methods in org.aspectj.internal.lang.reflect that return Advice
 Advice[] AjTypeImpl.getAdvice(AdviceKind... ofType)
           
 Advice AjTypeImpl.getAdvice(java.lang.String name)
           
 Advice[] AjTypeImpl.getDeclaredAdvice(AdviceKind... ofType)
           
 Advice AjTypeImpl.getDeclaredAdvice(java.lang.String name)
           
 

Uses of Advice in org.aspectj.lang.reflect
 

Methods in org.aspectj.lang.reflect that return Advice
 Advice[] AjType.getAdvice(AdviceKind... ofTypes)
          Returns all of the advice for this type, of an advice kind contained in the parameter list.
 Advice AjType.getAdvice(java.lang.String name)
          Returns the advice with the given name.
 Advice[] AjType.getDeclaredAdvice(AdviceKind... ofTypes)
          Returns all of the advice declared by this type, of an advice kind contained in the parameter list.
 Advice AjType.getDeclaredAdvice(java.lang.String name)
          Returns the advice declared in this type with the given name.