summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/declare/atfield/AtField1.aj
blob: 98cda93b530ce31e4a0aea1e0a43ed8c9545874a (plain)
1
2
3
4
5
6
7
8
9
10
11
//Simple declare annotation attached to a field
public aspect AtField1 {
 declare @field: public int * : @Colored("red");
 declare parents: AtField1 implements java.io.Serializable;
}

aspect X {
  before(): set(@Colored * *) {
    System.err.println("Colored field access at "+thisJoinPoint);
  }
}