All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yarnandtail.andhow.GroupInfo Maven / Gradle / Ivy

Go to download

Simple typed and validated configuration loading for web apps, command line or any environment application.

There is a newer version: 1.5.0
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy