From: aclement Date: Mon, 3 Jul 2006 14:15:35 +0000 (+0000) Subject: testcode for new handle provider (pr141730) X-Git-Tag: PRE_PIPELINE~83 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eedc4a6101561eb788e3ae0cb573c92b3f0392ca;p=aspectj.git testcode for new handle provider (pr141730) --- diff --git a/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj b/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj new file mode 100644 index 000000000..4e2e07daa --- /dev/null +++ b/tests/multiIncremental/JDTLikeHandleProvider/base/pkg/A.aj @@ -0,0 +1,23 @@ +package pkg; + +aspect A { + + before() : execution(* *.*(..)) { + } + + after() : callPCD(){ + } + after() : execPCD(){ + } + pointcut callPCD(): call(* *.*(..)); + pointcut execPCD(): execution(* *.*(..)); +} + +class C { + + public void m() { + } + + static { + } +} diff --git a/tests/multiIncremental/JDTLikeHandleProvider/inc1/pkg/A.aj b/tests/multiIncremental/JDTLikeHandleProvider/inc1/pkg/A.aj new file mode 100644 index 000000000..5f5e306c5 --- /dev/null +++ b/tests/multiIncremental/JDTLikeHandleProvider/inc1/pkg/A.aj @@ -0,0 +1,23 @@ +package pkg; + +aspect A { + + + before() : execution(* *.*(..)) { + } + after() : callPCD(){ + } + after() : execPCD(){ + } + pointcut callPCD(): call(* *.*(..)); + pointcut execPCD(): execution(* *.*(..)); +} + +class C { + + public void m() { + } + + static { + } +} diff --git a/tests/multiIncremental/JDTLikeHandleProvider/inc2/pkg/A.aj b/tests/multiIncremental/JDTLikeHandleProvider/inc2/pkg/A.aj new file mode 100644 index 000000000..50486f69b --- /dev/null +++ b/tests/multiIncremental/JDTLikeHandleProvider/inc2/pkg/A.aj @@ -0,0 +1,23 @@ +package pkg; + +aspect A { + + before() : execution(* *.*(..)) { + } + + after() : execPCD(){ + } + after() : callPCD(){ + } + pointcut callPCD(): call(* *.*(..)); + pointcut execPCD(): execution(* *.*(..)); +} + +class C { + + public void m() { + } + + static { + } +}