org.kohsuke.args4j.apt.AnnotationVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of args4j-tools Show documentation
Show all versions of args4j-tools Show documentation
development-time tool for generating additional artifacits
The newest version!
package org.kohsuke.args4j.apt;
import org.kohsuke.args4j.Option;
/**
* @author Kohsuke Kawaguchi
*/
interface AnnotationVisitor {
/**
* @deprecated as of 2.0.17 use {@link #onOption(OptionWithUsage)}
*/
@Deprecated
void onOption( String name, String usage );
void onOption( OptionWithUsage optionWithUsage );
void done();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy