gson-compile/gson-compile-processor/src/main/java/io/gitlab/jfronny/gson/compile/processor/util/SupportedAnnotationTypes2.java

11 lines
236 B
Java

package io.gitlab.jfronny.gson.compile.processor.util;
import java.lang.annotation.*;
@Documented
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface SupportedAnnotationTypes2 {
Class<?>[] value();
}