InterviewSolution
| 1. |
What Is A Joinpoint? |
|
Answer» The point where an aspect can be INTRODUCED in the APPLICATION is known as a joinpoint. This point could be a FIELD being modified, a method being called or even an exception being thrown. At these points, the new aspect’s code can be added to INTRODUCE a new behavior to the application. The point where an aspect can be introduced in the application is known as a joinpoint. This point could be a field being modified, a method being called or even an exception being thrown. At these points, the new aspect’s code can be added to introduce a new behavior to the application. |
|