summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/usingPackageNames/MyAspect.aj
blob: 41fda5537aced68d85a78bf12e9ec29654156048 (plain)
1
2
3
4
5
6
7
8
package test;

public aspect MyAspect {
  after(test.MyAnnotation ma) : set (public String test.MyClass._myField) && @target(ma){
    System.err.println("pointcut matching : " + ma);
  }
}