aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/serialVersionUID/AroundExecutionAdvice.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/serialVersionUID/AroundExecutionAdvice.aj')
-rw-r--r--tests/bugs/serialVersionUID/AroundExecutionAdvice.aj14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs/serialVersionUID/AroundExecutionAdvice.aj b/tests/bugs/serialVersionUID/AroundExecutionAdvice.aj
new file mode 100644
index 000000000..6da62e42a
--- /dev/null
+++ b/tests/bugs/serialVersionUID/AroundExecutionAdvice.aj
@@ -0,0 +1,14 @@
+public aspect AroundExecutionAdvice {
+
+ pointcut run () :
+ execution(public void run());
+
+ void around () : run () {
+ System.out.println("> AroundExecutionAdvice.run()");
+
+ proceed();
+
+ System.out.println("< AroundExecutionAdvice.run()");
+ }
+
+}