diff options
author | aclement <aclement> | 2009-09-15 16:39:34 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-09-15 16:39:34 +0000 |
commit | df77d3ac901b2bc91d1580732d0b967da8947ecf (patch) | |
tree | 58dbe40e5bff7149e42465c68836d7892a969d7a /tests/features164/aopconfig | |
parent | ebd2c14134d346b39e2c1d581627132f8b4337c6 (diff) | |
download | aspectj-df77d3ac901b2bc91d1580732d0b967da8947ecf.tar.gz aspectj-df77d3ac901b2bc91d1580732d0b967da8947ecf.zip |
more aop.xml compile time config stuff
Diffstat (limited to 'tests/features164/aopconfig')
-rw-r--r-- | tests/features164/aopconfig/one/case4.xml | 10 | ||||
-rw-r--r-- | tests/features164/aopconfig/one/case5.xml | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/tests/features164/aopconfig/one/case4.xml b/tests/features164/aopconfig/one/case4.xml new file mode 100644 index 000000000..5015955c0 --- /dev/null +++ b/tests/features164/aopconfig/one/case4.xml @@ -0,0 +1,10 @@ +<!-- B2 is exluded from being woven --> +<aspectj> +<aspects> + <aspect name="A"/> + <aspect name="A2"/> +</aspects> +<weaver> + <exclude within="B2"/> +</weaver> +</aspectj> diff --git a/tests/features164/aopconfig/one/case5.xml b/tests/features164/aopconfig/one/case5.xml new file mode 100644 index 000000000..cbc652f98 --- /dev/null +++ b/tests/features164/aopconfig/one/case5.xml @@ -0,0 +1,10 @@ +<!-- B2 is exluded from being woven --> +<aspectj> +<aspects> + <aspect name="A"/> + <aspect name="A2"/> +</aspects> +<weaver> + <exclude within="B*"/> +</weaver> +</aspectj> |