1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/** * */ package de.torui.coflsky.configuration; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; @Retention(RUNTIME) @Target(FIELD) /** * @author Florian Rinke * */ public @interface Description { public String value(); }