diff options
Diffstat (limited to 'tests/bugs188/478003/OrientDBKeyIO.java')
-rw-r--r-- | tests/bugs188/478003/OrientDBKeyIO.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/bugs188/478003/OrientDBKeyIO.java b/tests/bugs188/478003/OrientDBKeyIO.java new file mode 100644 index 000000000..2397ae8d2 --- /dev/null +++ b/tests/bugs188/478003/OrientDBKeyIO.java @@ -0,0 +1,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; } + +} + |