Mercurial > hg > Database > Christie
view src/main/java/christie/annotation/PeekFrom.java @ 50:8dfd93810041
fix config and HostMessage
author | akahori |
---|---|
date | Thu, 23 Aug 2018 09:30:36 +0900 |
parents | 307ac87ddcf7 |
children |
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 PeekFrom { String value(); }