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

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

There is a newer version: 1.3.3
Show 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.TYPE }) public @interface Configurations { /** *

* 该配置组定义的名称. *

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

* 该配置组定义的描述. *

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy