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

pr107059_2.aj 257B

1234567891011121314
  1. public aspect pr107059_2 {
  2. before() : target(@Foo *) { // not allowed type pattern in target of course!
  3. System.out.println("hi");
  4. }
  5. void bar(Object o) {
  6. o.toString(); // generates o hasAnnotation(Foo.class) test
  7. }
  8. }
  9. @interface Foo {}