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.

12345678910111213141516171819
  1. public class Three {
  2. public static void main(String []argv) {
  3. System.out.println("Three running");
  4. new Three();
  5. new Three("abc");
  6. new Three(1,"abc");
  7. }
  8. Three() {}
  9. Three(String s) {}
  10. Three(int i, String s) {}
  11. }
  12. aspect X {
  13. void around(): execution(new(..)) && !within(X) {
  14. System.out.println(thisJoinPointStaticPart.getSignature());
  15. proceed();
  16. }
  17. }