gson-compile/gson-compile-annotations/src/main/java/io/gitlab/jfronny/gson/compile/annotations/GWith.java

10 lines
224 B
Java

package io.gitlab.jfronny.gson.compile.annotations;
import java.lang.annotation.*;
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.SOURCE)
public @interface GWith {
Class<?> serializer();
}