Uses of Class
org.aspectj.weaver.Shadow.Kind

Packages that use Shadow.Kind
org.aspectj.weaver   
org.aspectj.weaver.bcel   
org.aspectj.weaver.patterns   
org.aspectj.weaver.reflect   
 

Uses of Shadow.Kind in org.aspectj.weaver
 

Fields in org.aspectj.weaver declared as Shadow.Kind
static Shadow.Kind Shadow.AdviceExecution
           
static Shadow.Kind Shadow.ConstructorCall
           
static Shadow.Kind Shadow.ConstructorExecution
           
static Shadow.Kind Shadow.ExceptionHandler
           
static Shadow.Kind Shadow.FieldGet
           
static Shadow.Kind Shadow.FieldSet
           
static Shadow.Kind Shadow.Initialization
           
static Shadow.Kind Shadow.MethodCall
          These names are the ones that will be returned by thisJoinPoint.getKind() Those need to be documented somewhere
static Shadow.Kind Shadow.MethodExecution
           
static Shadow.Kind Shadow.PreInitialization
           
static Shadow.Kind[] Shadow.SHADOW_KINDS
           
static Shadow.Kind Shadow.StaticInitialization
           
static Shadow.Kind Shadow.SynchronizationLock
           
static Shadow.Kind Shadow.SynchronizationUnlock
           
 

Methods in org.aspectj.weaver that return Shadow.Kind
 Shadow.Kind Shadow.getKind()
          returns the kind of shadow this is, representing what happens under this shadow
 Shadow.Kind AjAttribute.EffectiveSignatureAttribute.getShadowKind()
           
static Shadow.Kind Shadow.Kind.read(java.io.DataInputStream s)
           
 

Methods in org.aspectj.weaver that return types with arguments of type Shadow.Kind
static java.util.Set<Shadow.Kind> Shadow.toSet(int i)
          Convert a bit array for the shadow kinds into a set of them...
 

Constructors in org.aspectj.weaver with parameters of type Shadow.Kind
AjAttribute.EffectiveSignatureAttribute(ResolvedMember effectiveSignature, Shadow.Kind shadowKind, boolean weaveBody)
           
TestShadow(Shadow.Kind kind, Member signature, UnresolvedType thisType, World world)
           
 

Uses of Shadow.Kind in org.aspectj.weaver.bcel
 

Methods in org.aspectj.weaver.bcel that return Shadow.Kind
 Shadow.Kind AnnotationAccessVar.getKind()
           
 

Methods in org.aspectj.weaver.bcel with parameters of type Shadow.Kind
static BcelShadow BcelShadow.makeShadowForMethod(BcelWorld world, LazyMethodGen enclosingMethod, Shadow.Kind kind, Member sig)
           
static BcelShadow BcelShadow.makeShadowForMethodCall(BcelWorld world, LazyMethodGen enclosingMethod, InstructionHandle callHandle, BcelShadow enclosingShadow, Shadow.Kind kind, ResolvedMember sig)
           
 void LazyMethodGen.setEffectiveSignature(ResolvedMember member, Shadow.Kind kind, boolean shouldWeave)
           
 

Constructors in org.aspectj.weaver.bcel with parameters of type Shadow.Kind
AnnotationAccessVar(BcelShadow shadow, Shadow.Kind kind, ResolvedType annotationType, UnresolvedType theTargetIsStoredHere, Member sig)
           
BcelShadow(BcelWorld world, Shadow.Kind kind, Member signature, LazyMethodGen enclosingMethod, BcelShadow enclosingShadow)
          This generates an unassociated shadow, rooted in a particular method but not rooted to any particular point in the code.
 

Uses of Shadow.Kind in org.aspectj.weaver.patterns
 

Methods in org.aspectj.weaver.patterns that return Shadow.Kind
 Shadow.Kind FastMatchInfo.getKind()
          kind can be null to indicate that all kinds should be considered.
 Shadow.Kind KindedPointcut.getKind()
           
 

Constructors in org.aspectj.weaver.patterns with parameters of type Shadow.Kind
FastMatchInfo(ResolvedType type, Shadow.Kind kind, World world)
           
KindedPointcut(Shadow.Kind kind, SignaturePattern signature)
           
KindedPointcut(Shadow.Kind kind, SignaturePattern signature, ShadowMunger munger)
           
 

Uses of Shadow.Kind in org.aspectj.weaver.reflect
 

Constructors in org.aspectj.weaver.reflect with parameters of type Shadow.Kind
ReflectionFastMatchInfo(ResolvedType type, Shadow.Kind kind, MatchingContext context, World world)
           
ReflectionShadow(World world, Shadow.Kind kind, Member signature, Shadow enclosingShadow, ResolvedType enclosingType, ResolvedMember enclosingMember, MatchingContext withContext)
           
StandardShadow(World world, Shadow.Kind kind, Member signature, Shadow enclosingShadow, ResolvedType enclosingType, ResolvedMember enclosingMember, MatchingContext withContext)