view src/main/java/alice/Annotation/AliceAnnotationTest.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents 106f50cb7dd9
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");
    }
}