aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs188/478003/OrientDBKeyIO.java
blob: 2397ae8d24167316d1add738dd1006ccc4a3e067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//import com.flickbay.orientdb.OrientKey;

class OrientKey<T> {
}

class SimpleOrientDBValue extends OrientDBValue {}
class OrientDBValue<T> {}

public aspect OrientDBKeyIO {

    public interface IO<T> {
        OrientDBValue<T> getOrientDBValue();
    }

    declare parents : OrientKey implements IO;

    public SimpleOrientDBValue OrientKey<T>.value = null;

    public OrientDBValue OrientKey<T>.getOrientDBValue() { return this.value; }

}