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

cn.featherfly.rc.annotation.Configuration Maven / Gradle / Ivy

The newest version!

package cn.featherfly.rc.annotation;

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

/**
 * 

* 配置项的注解. *

* @author 钟冀 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD}) public @interface Configuration { /** *

* 该配置项的名称. *

* @return 名称 */ String name(); /** *

* 该配置项的描述. *

* @return 描述 */ String descp(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy