com.github.rapidark.classweaver.Weaver Maven / Gradle / Ivy
The newest version!
package com.github.rapidark.classweaver;
import java.lang.annotation.Annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ java.lang.annotation.ElementType.TYPE })
public @interface Weaver {
Class> value();
}