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.

pr141730.aj 475B

123456789101112131415161718192021222324252627282930313233
  1. aspect A {
  2. pointcut p() : execution(* *.*(..)) || execution(*.new(..));
  3. before() : p() {
  4. }
  5. }
  6. class C {
  7. public C() {}
  8. public void method() {}
  9. public void intMethod(int i) {}
  10. public void stringMethod(String s) {}
  11. public void myClassMethod(MyClass s) {}
  12. public void twoArgsMethod(int i, String s) {}
  13. public static void main(String[] args) {}
  14. public void multiMethod(String[][] s) {}
  15. public void intArray(int[] i) {}
  16. }
  17. class MyClass {}