aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core/testdata/WeaveInfoMessagesTest/AspectITD.aj
blob: 941be481dc6bece2b75faaa194a7bc56b080dea7 (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";
  }
 
}