![JAR search and dependency download from the Maven repository](/logo.png)
org.jvnet.hudson.annotation_indexer.Validator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annotation-indexer Show documentation
Show all versions of annotation-indexer Show documentation
Creates index of annotations.
The newest version!
package org.jvnet.hudson.annotation_indexer;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.element.Element;
/**
* Checkes the usage of {@link Indexed} annotations at compile-time.
*
* @author Kohsuke Kawaguchi
* @see Indexed
*/
public interface Validator {
/**
* Checks the occurrence of the {@link Indexed} annotation
* and report any error. Useful for early error detection.
*/
void check(Element use, RoundEnvironment e, ProcessingEnvironment env);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy