blob: b0b3f8d661eceb7b85ae4ac5cb116e08950b69f4 (
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
41
42
|
import java.lang.annotation.*;
import java.lang.ref.*;
class Product{}
class ProductType{}
interface AssociationSource<T> {
Link<T> getTarget();
void setTarget(Link<T> _target);
}
aspect ExtendProduct {
Link<T> AssociationSource._target = null;
public Link<T> AssociationSource.getTarget() {
return _target;
}
public void AssociationSource.setTarget(Link<T> _target) {
this._target = _target;
}
declare parents : ProductType implements AssociationSource<Product>;
declare parents : Product implements AssociationSource<Branch>;
declare parents : Branch implements AssociationSource<Revision>;
}
class Link<T> extends SoftReference {
@SuppressWarnings("unchecked")
Link(List<T> endPoints) {
super(endPoints);
}
@SuppressWarnings("unchecked")
public List<T> getEndPoints() {
return (List<T>)get();
}
}
|