blob: e37065c8751e587a17aed762dbe2bd215455bc12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public abstract aspect AbstractMethods {
protected abstract pointcut tracingScope ();
before () : tracingScope () {
test();
}
protected abstract void test ();
// protected void test () {}
}
|