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

kz.greetgo.conf.hot.Description Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package kz.greetgo.conf.hot;

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

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;

/**
 * 

* This annotation describes from java about config parameter, if this annotation located above method. *

*

* This annotation describes from java about config interface, if this annotation located above interface. *

* * @author pompei */ @Documented @Target({METHOD, TYPE, FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Description { /** * Description contents * * @return description contents */ String value(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy