Mercurial > hg > Database > Christie
annotate 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 |
rev | line source |
---|---|
0 | 1 package christie.annotation; |
2 | |
3
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
3 import java.lang.annotation.ElementType; |
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
4 import java.lang.annotation.Retention; |
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
5 import java.lang.annotation.RetentionPolicy; |
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
6 import java.lang.annotation.Target; |
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
7 |
0 | 8 /** |
9 * Created by e125769 on 12/7/17. | |
10 */ | |
3
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
11 @Target(ElementType.FIELD) |
e3bb0eea73f2
resolve Annotation error and TestCodeGear is working
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
12 @Retention(RetentionPolicy.RUNTIME) |
0 | 13 public @interface Take { |
14 String value(); | |
15 } |