diff options
Diffstat (limited to 'tests/other-systems/java-src/Pcds.java')
-rw-r--r-- | tests/other-systems/java-src/Pcds.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/other-systems/java-src/Pcds.java b/tests/other-systems/java-src/Pcds.java new file mode 100644 index 000000000..9bd156879 --- /dev/null +++ b/tests/other-systems/java-src/Pcds.java @@ -0,0 +1,4 @@ +public aspect Pcds { + public pointcut withinMe(): within(java..*) || within(javax..*); + public pointcut myTarget(): target(java..*) || target(javax..*); +} |