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

com.peterphi.std.annotation.Doc Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
package com.peterphi.std.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Documentation that can be read at runtime
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface Doc
{
	/**
	 * Some textual documentation
	 *
	 * @return
	 */
	public String[] value() default "";

	/**
	 * An (optional) set of links to some external resources where more information may be obtained
	 *
	 * @return
	 */
	public String[] href() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy