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

io.zenwave360.generator.doc.DocumentedPlugin Maven / Gradle / Ivy

package io.zenwave360.generator.doc;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/**
 * Documents {@link io.zenwave360.generator.generators.Generator} options, used for building help and documentation messages.
 */
@Documented
@Target({TYPE})
@Retention(RUNTIME)
public @interface DocumentedPlugin {

    String value();

    String description() default "";

    String shortCode() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy