diff src/main/java/alice/Annotation/Data.java @ 637:106f50cb7dd9

remove file
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Thu, 07 Dec 2017 19:02:57 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/alice/Annotation/Data.java	Thu Dec 07 19:02:57 2017 +0900
@@ -0,0 +1,13 @@
+package alice.Annotation;
+
+import java.lang.reflect.Type;
+
+/**
+ * Created by e125769 on 12/6/17.
+ */
+public interface Data<T> {
+    Type getType();
+    void setType(Type type);
+    T getData();
+    void setData(T data);
+}