view Paper/src/Take.java @ 8:48c1f1d9fc65

add src and update chapter attribute vs annotation
author riono <e165729@ie.u-ryukyu.ac.jp>
date Mon, 03 May 2021 22:57:48 +0900
parents
children 73a3c53c7568
line wrap: on
line source

package christie.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Take {
}