選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DoSomeWeaving.java 279B

12345678910111213141516
  1. class DoSomeWeaving {
  2. public static void main(String[] argv) {
  3. new DoSomeWeaving().sayHi();
  4. }
  5. public void sayHi() {
  6. System.err.println("hi");
  7. }
  8. }
  9. aspect A1 {
  10. before(): call(* *(..)) && !within(A1) {
  11. System.err.println("Just about to make a call");
  12. }
  13. }