io.avaje.prism.GenerateAPContext Maven / Gradle / Ivy
package io.avaje.prism;
import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.SOURCE;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Place on a Type/Package to have the Prism Generator create a static {@code APContext} class to
* let you access ProcessingEnv from anywhere.
*/
@Retention(SOURCE)
@Target({TYPE, PACKAGE})
public @interface GenerateAPContext {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy