view src/main/java/alice/Annotation/AliceAnnotationTest.java @ 637:106f50cb7dd9

remove file
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Thu, 07 Dec 2017 19:02:57 +0900
parents 33f300d0720a
children
line wrap: on
line source

package alice.Annotation;

import alice.codesegment.InputDataSegment;
import alice.datasegment.CommandType;
import alice.datasegment.Receiver;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Array;
import java.lang.reflect.Method;

/**
 * Created by e125769 on 11/14/17.
 */
public class AliceAnnotationTest {
    public static void main(String[] args){
        AliceAnnotation alice = new AliceAnnotation("huge");
        alice.ods.put("hoge", "hogehogehoge");
        alice.ods.put("piyo", 1);
        alice.ods.put("huge", "hugehugehuge");
    }
}