|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Point cut for a matching Java classes and methods.
In aspect-oriented computer programming, a pointcut is a set of join points. Whenever the program execution reaches one of the join points described in the pointcut, a piece of code associated with the pointcut (called advice) is executed. This means you can use pointcuts to describe where and when you want to execute additional code on top of the already defined behaviour. This allows you to add additional aspects to existing software or to design software with a clear separation of concerns, where you weave (merge) the different aspects into a complete application.
| Method Summary | |
void |
addJoinPoint(IMethodJoinPoint joinpoint)
Registers a method join point to this point cut |
| Methods inherited from interface com.xenonsoft.bridgetown.aop.IPointCut |
addJoinPoint, getContext, getJoinPointCount, getJoinPoints, getMethodInterceptor, getName, getParameter, getParameterNames, getTransactionConfig, setMethodInterceptor, setName, setParameter, setTransactionConfig |
| Method Detail |
public void addJoinPoint(IMethodJoinPoint joinpoint)
joinpoint - the method joinpoint to add
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||