
net.gdface.annotation.GenericParam Maven / Gradle / Ivy
/**
* @Title: GenericParam.java
* @Package net.gdface.annotation
* @Description: TODO
* @author guyadong
* @date 2015年7月19日 下午12:31:50
* @version V1.0
*/
package net.gdface.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 是否生成泛型接口标志
* @author guyadong
*
*/
@Target({ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
public @interface GenericParam {
boolean value() default true;
String name() default "";
String upbound() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy