blob: 30af86fd712231a336f33c69e4ec21574d0473c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import org.aspectj.testing.Tester;
/**
* This does accessibility of class and class variables, both inherited
* and non-inherited, in the body of a weave.
*/
public class Driver {
public static void main(String[] args) { test(); }
public static void test() {
Tester.checkEqual((new Bar()).m(), 10, "Bar.m");
}
}
class Foo {
int fooVar = 1;
public int getFooVar( ) { return fooVar; }
}
class Bar extends Foo {
int barVar = 2;
int ans = 0;
public int getBarVar() { return barVar; }
public void setAns( int newAns ) { ans = newAns; }
int m() {
return ans;
}
}
abstract aspect A {
static int aVar = 3;
}
aspect B extends A {
static int bVar = 4;
before(Bar b): target(b) && call(* m(..)) {
b.setAns(b.getFooVar() + b.getBarVar() + aVar + bVar);
}
}
|