Uses of Interface
org.jboss.aop.pointcut.Pointcut

Packages that use Pointcut
org.jboss.aop   
org.jboss.aop.advice   
org.jboss.aop.instrument   
org.jboss.aop.pointcut   
org.jboss.aop.util   
 

Uses of Pointcut in org.jboss.aop
 

Methods in org.jboss.aop that return Pointcut
 Pointcut Domain.getPointcut(String name)
          Find a pointcut of with a given name
 Pointcut AspectManager.getPointcut(String name)
          Find a pointcut of with a given name
 

Methods in org.jboss.aop that return types with arguments of type Pointcut
 LinkedHashMap<String,Pointcut> Domain.getPointcuts()
           
 LinkedHashMap<String,Pointcut> AspectManager.getPointcuts()
           
 

Methods in org.jboss.aop with parameters of type Pointcut
 void Domain.addPointcut(Pointcut pointcut)
           
 void AspectManager.addPointcut(Pointcut pointcut)
          Add an interceptor pointcut with a given name
 

Uses of Pointcut in org.jboss.aop.advice
 

Fields in org.jboss.aop.advice declared as Pointcut
protected  Pointcut AdviceBinding.pointcut
          Identifies when the advices/interceptors contained in this binding should be invoked.
 

Methods in org.jboss.aop.advice that return Pointcut
 Pointcut AdviceBinding.getPointcut()
          Returns the pointcut that determines when the bound interceptor chain should be invoked.
 Pointcut ClassifiedBindingAndPointcutCollection.getPointcut(String name)
          Gets the pointcut named name
 

Methods in org.jboss.aop.advice that return types with arguments of type Pointcut
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getConstructionPointcuts()
          Returns only the pointcuts that may match successfully construction joinpoints.
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getConstructorCallPointcuts()
          Returns only the pointcuts that may match successfully constructor call joinpoints.
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getConstructorExecutionPointcuts()
          Returns only the pointcuts that may match successfully constructor execution joinpoints.
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getFieldReadPointcuts()
          Returns only the pointcuts that may match successfully field read joinpoints.
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getFieldWritePointcuts()
          Returns only the pointcuts that may match successfully field write joinpoints.
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getMethodCallPointcuts()
          Returns only the pointcuts that may match successfully method call joinpoints.
 Collection<Pointcut> ClassifiedBindingAndPointcutCollection.getMethodExecutionPointcuts()
          Returns only the pointcuts that may match successfully method execution joinpoints.
 LinkedHashMap<String,Pointcut> ClassifiedBindingAndPointcutCollection.getPointcuts()
          Returns the pointcuts map.
 LinkedHashMap<String,Pointcut> ClassifiedBindingAndPointcutCollection.getPointcutsInternal()
          Deprecated. 
 

Methods in org.jboss.aop.advice with parameters of type Pointcut
 void ClassifiedBindingAndPointcutCollection.add(Pointcut pointcut, AspectManager manager)
          Adds a pointcut to this collection
 void ClassifiedBindingAndPointcutCollection.removePointcut(Pointcut pc)
          Removes the pointcut and the equivalent pointcutInfo.
 

Constructors in org.jboss.aop.advice with parameters of type Pointcut
AdviceBinding(String name, Pointcut p, ASTCFlowExpression cflow, String cflowString, InterceptorFactory[] factories)
          Constructor to be used internally.
 

Uses of Pointcut in org.jboss.aop.instrument
 

Methods in org.jboss.aop.instrument that return types with arguments of type Pointcut
 Collection<Pointcut> JoinpointClassifier.BindingCollectionAccessor.getPointcuts(Advisor advisor)
           
 

Methods in org.jboss.aop.instrument with parameters of type Pointcut
 boolean JoinpointClassifier.Matcher.matches(Pointcut pointcut, Advisor advisor, javassist.CtMember member)
          Checks if pointcut matches a joinpoint.
 

Uses of Pointcut in org.jboss.aop.pointcut
 

Classes in org.jboss.aop.pointcut that implement Pointcut
 class PointcutExpression
          Comment
 

Methods in org.jboss.aop.pointcut that return Pointcut
 Pointcut PointcutInfo.getPointcut()
          Returns the pointcut associated with this information.
 

Methods in org.jboss.aop.pointcut with parameters of type Pointcut
protected  Boolean WithinMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean SoftClassMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean NewExprMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean MethodMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean MethodCallMatcher.resolvePointcut(Pointcut p)
           
protected abstract  Boolean MatcherHelper.resolvePointcut(Pointcut p)
           
protected  Boolean FieldSetMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean FieldMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean FieldGetMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean ExecutionMethodMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean ExecutionConstructorMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean ConstructorMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean ConstructorCallMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean ConstructionMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean CFlowMatcher.resolvePointcut(Pointcut p)
           
protected  Boolean CallMatcher.resolvePointcut(Pointcut p)
           
 

Constructors in org.jboss.aop.pointcut with parameters of type Pointcut
PointcutInfo(Pointcut pointcut, AdviceBinding binding, boolean dynamicAop)
          This constructor must be called only when a pointcut is declared inside a binding.
PointcutInfo(Pointcut pointcut, boolean dynamicAop)
          Constructor that must be called only when a pointcut is declared outside a binding.
 

Uses of Pointcut in org.jboss.aop.util
 

Methods in org.jboss.aop.util with parameters of type Pointcut
static boolean BindingClassifier.isCall(Pointcut pc)
           
static boolean BindingClassifier.isConstruction(Pointcut pc)
           
static boolean BindingClassifier.isConstructorCall(Pointcut pc)
           
static boolean BindingClassifier.isConstructorExecution(Pointcut pc)
           
static boolean BindingClassifier.isExecution(Pointcut pc)
           
static boolean BindingClassifier.isGet(Pointcut pc)
           
static boolean BindingClassifier.isMethodCall(Pointcut pc)
           
static boolean BindingClassifier.isMethodExecution(Pointcut pc)
           
static boolean BindingClassifier.isSet(Pointcut pc)
           
static boolean BindingClassifier.isWithin(Pointcut pc)
           
static boolean BindingClassifier.isWithincode(Pointcut pc)
           
 



Copyright © 2008 JBoss, a division of Red Hat, Inc.. All Rights Reserved.