aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/WeaveInfoMessagesTest/AspectITD.aj
blob: 1f47b33e02fda1ac03b44b9d2d2a990fb8613eea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Simple aspect that tramples all over Simple.java

public aspect AspectITD {
	
  int Simple.fieldint = 5;
  
  String Simple.fieldstring = "hello";
  
  public int Simple.returnint() {
  	return 5;
  }
  
  public String Simple.returnstring() {
  	return "abc";
  }
 
}