summaryrefslogtreecommitdiffstats
path: root/tests/bugs/serialVersionUID/AroundExecutionAdvice.aj
diff options
context:
space:
mode:
authoraclement <aclement>2004-03-16 09:24:17 +0000
committeraclement <aclement>2004-03-16 09:24:17 +0000
commitcb2aaacf5c3fd4a745fd708c89feaab18435b0e0 (patch)
tree23597914033f16f59a3de81fec41d92f0318cd9d /tests/bugs/serialVersionUID/AroundExecutionAdvice.aj
parente6894a62dae5857568da40762c4f6daa6111fdb3 (diff)
downloadaspectj-cb2aaacf5c3fd4a745fd708c89feaab18435b0e0.tar.gz
aspectj-cb2aaacf5c3fd4a745fd708c89feaab18435b0e0.zip
Fix for Bugzilla Bug 41181
Support SerialVersionUID field if no new fields declared on class (Regenerated with BcweaverJarMaker)
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()");
+ }
+
+}