InterviewSolution
| 1. |
What Is A Jointpoint? |
|
Answer» A joinpoint is a point in the execution of the application where an aspect can be plugged in. This point could be a method being CALLED, an exception being thrown, or even a FIELD being MODIFIED. These are the points where your aspects code can be inserted into the normal flow of your application to ADD new behavior. A joinpoint is a point in the execution of the application where an aspect can be plugged in. This point could be a method being called, an exception being thrown, or even a field being modified. These are the points where your aspects code can be inserted into the normal flow of your application to add new behavior. |
|