Package | Description |
---|---|
org.jboss.aop | |
org.jboss.aop.advice | |
org.jboss.aop.instrument | |
org.jboss.aop.pointcut | |
org.jboss.aop.util |
Modifier and Type | Method and Description |
---|---|
Pointcut |
AspectManager.getPointcut(String name)
Find a pointcut of with a given name
|
Pointcut |
Domain.getPointcut(String name)
Find a pointcut of with a given name
|
Modifier and Type | Method and Description |
---|---|
LinkedHashMap<String,Pointcut> |
AspectManager.getPointcuts() |
LinkedHashMap<String,Pointcut> |
Domain.getPointcuts() |
Modifier and Type | Method and Description |
---|---|
void |
AspectManager.addPointcut(Pointcut pointcut)
Add an interceptor pointcut with a given name
|
void |
Domain.addPointcut(Pointcut pointcut) |
Modifier and Type | Field and Description |
---|---|
protected Pointcut |
AdviceBinding.pointcut
Identifies when the advices/interceptors contained in this binding should
be invoked.
|
Modifier and Type | Method and Description |
---|---|
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 |
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
AdviceBinding(String name,
Pointcut p,
ASTCFlowExpression cflow,
String cflowString,
InterceptorFactory[] factories)
Constructor to be used internally.
|
Modifier and Type | Method and Description |
---|---|
Collection<Pointcut> |
JoinpointClassifier.BindingCollectionAccessor.getPointcuts(Advisor advisor) |
Modifier and Type | Method and Description |
---|---|
boolean |
JoinpointClassifier.Matcher.matches(Pointcut pointcut,
Advisor advisor,
javassist.CtMember member)
Checks if
pointcut matches a joinpoint. |
Modifier and Type | Class and Description |
---|---|
class |
PointcutExpression
Comment
|
Modifier and Type | Method and Description |
---|---|
Pointcut |
PointcutInfo.getPointcut()
Returns the pointcut associated with this information.
|
Modifier and Type | Method and Description |
---|---|
protected Boolean |
ConstructorMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
ExecutionMethodMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
FieldGetMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
MethodCallMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
FieldMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
CallMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
ExecutionConstructorMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
WithinMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
CFlowMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
SoftClassMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
ConstructionMatcher.resolvePointcut(Pointcut p) |
protected abstract Boolean |
MatcherHelper.resolvePointcut(Pointcut p) |
protected Boolean |
ConstructorCallMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
MethodMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
FieldSetMatcher.resolvePointcut(Pointcut p) |
protected Boolean |
NewExprMatcher.resolvePointcut(Pointcut p) |
Constructor and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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 © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.