You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

A.java 200B

123456789101112131415161718
  1. import java.util.*;
  2. public class A {
  3. public void foo(Set s) {
  4. }
  5. public void goo(Map s) {
  6. }
  7. }
  8. aspect X {
  9. pointcut p(Set s): execution(* *(..)) && args(s);
  10. before(Map m): p(m) {
  11. }
  12. }