com.envision.annotation.Processor Maven / Gradle / Ivy
The newest version!
package com.envision.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author qiweishi
* @date 2018/11/9
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Processor {
String value();
}