Mercurial > hg > Database > Christie
view src/main/java/christie/annotation/Take.java @ 10:4b608ce0c483
add local repeat test
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 30 Dec 2017 18:30:04 +0900 |
parents | e3bb0eea73f2 |
children | 307ac87ddcf7 |
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; /** * Created by e125769 on 12/7/17. */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Take { String value(); }