Mercurial > hg > Database > Christie
comparison src/main/java/christie/annotation/Take.java @ 3:e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 13 Dec 2017 17:24:14 +0900 |
parents | c082039368f5 |
children | 307ac87ddcf7 |
comparison
equal
deleted
inserted
replaced
2:bacdcb5e6dcf | 3:e3bb0eea73f2 |
---|---|
1 package christie.annotation; | 1 package christie.annotation; |
2 | |
3 import java.lang.annotation.ElementType; | |
4 import java.lang.annotation.Retention; | |
5 import java.lang.annotation.RetentionPolicy; | |
6 import java.lang.annotation.Target; | |
2 | 7 |
3 /** | 8 /** |
4 * Created by e125769 on 12/7/17. | 9 * Created by e125769 on 12/7/17. |
5 */ | 10 */ |
11 @Target(ElementType.FIELD) | |
12 @Retention(RetentionPolicy.RUNTIME) | |
6 public @interface Take { | 13 public @interface Take { |
7 String value(); | 14 String value(); |
8 } | 15 } |