se.vandmo.textchecker.maven.annotations.FixWith Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-checker-maven-plugin Show documentation
Show all versions of text-checker-maven-plugin Show documentation
Maven plugin that checks that text files adheres to certain rules.
package se.vandmo.textchecker.maven.annotations;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import se.vandmo.textchecker.maven.Fixer;
@Retention(RUNTIME)
@Target(TYPE)
public @interface FixWith {
Class extends Fixer> value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy