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

ClassWithNestedAspect2.java 240B

1234567891011121314151617181920
  1. package pkg;
  2. public class ClassWithNestedAspect2 {
  3. public void amethod() {
  4. }
  5. class InnerClass {
  6. aspect NestedAspect {
  7. pointcut p() : execution(* ClassWithNestedAspect.amethod(..));
  8. before() : p() {
  9. }
  10. }
  11. }
  12. }