tech.ytsaurus.spyt.patch.annotations.AddInterfaces Maven / Gradle / Ivy
The newest version!
package tech.ytsaurus.spyt.patch.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.CLASS)
@Target(ElementType.TYPE)
public @interface AddInterfaces {
/**
* Name of an interface
*/
Class>[] value();
}