| Article: |
Introduction to Aspect-Oriented Programming | |
| Subject: | understanding proceed | |
| Date: | 2005-02-20 21:40:13 | |
| From: | cef | |
|
When you call proceed, the method runs up to the final } of the method, then the code in the aspect begins running as if it were simply inserted into the original code. Is that right? |
||
Showing messages 1 through 2 of 2.
-
understanding proceed
2005-06-22 11:11:43 grahamoregan [View]
yup, everything before the proceed() happens before the first line of code within the method and everything after it gets called after the last line.
-
understanding proceed
2005-06-18 03:55:58 grahamoregan [View]
exactly, so you can insert code after compiling the original sources and add common routines like logging or security.


