All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.avaje.prism.GenerateModuleInfoReader 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 helper class for reading application
 * module-info files
 */
@Retention(SOURCE)
@Target({TYPE, PACKAGE})
public @interface GenerateModuleInfoReader {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy