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.

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. }