comparison 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
comparison
equal deleted inserted replaced
636:33f300d0720a 637:106f50cb7dd9
1 package alice.Annotation;
2
3 import java.lang.reflect.Type;
4
5 /**
6 * Created by e125769 on 12/6/17.
7 */
8 public interface Data<T> {
9 Type getType();
10 void setType(Type type);
11 T getData();
12 void setData(T data);
13 }