diff options
Diffstat (limited to 'tests/java5/ataspectj/annotationGen/PCLib.aj')
-rw-r--r-- | tests/java5/ataspectj/annotationGen/PCLib.aj | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/java5/ataspectj/annotationGen/PCLib.aj b/tests/java5/ataspectj/annotationGen/PCLib.aj new file mode 100644 index 000000000..f41c9412f --- /dev/null +++ b/tests/java5/ataspectj/annotationGen/PCLib.aj @@ -0,0 +1,7 @@ +public aspect PCLib { + + public pointcut anyMethodExecution() : execution(* *(..)); + + public pointcut joinPointWithStringArg(String s) : args(s); + +}
\ No newline at end of file |