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

io.toolisticon.aptk.compilermessage.api.DeclareCompilerMessageCodePrefix Maven / Gradle / Ivy

The newest version!
package io.toolisticon.aptk.compilermessage.api;

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

/**
 * Used to define a message code prefix.
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DeclareCompilerMessageCodePrefix {

    /**
     * The prefix to be used in compiler message codes.
     * Defaults to class name if not explicitly set.
     * @return the message code prefix
     */
    String value() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy