org.yarnandtail.andhow.GroupInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andhow-core Show documentation
Show all versions of andhow-core Show documentation
Simple typed and validated configuration loading for web apps, command line or any environment application.
package org.yarnandtail.andhow;
import java.lang.annotation.*;
/**
* Annotation to allow users to include documentation on PropertyGroups.
*
* When sample configuration or documentation is generated, these values are used
* to provide better details on groups.
*
* @author eeverman
*/
@Retention(RetentionPolicy.RUNTIME) //ensures this annotation is available to the VM, not just compiler
@Target(ElementType.TYPE) //Only use on type declarations
@Documented //Include values for this annotation in JavaDocs
public @interface GroupInfo {
String name();
String desc();
}