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

xerial.cui.command Maven / Gradle / Ivy

The newest version!
package xerial.cui;

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

/**
 * Annotation for methods that can be invoked as commands
 *
 * @author leo
 *
 */
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD })
public @interface command {

    /**
     * Description of the option, used to generate a help message of this
     * command-line options.
     */
    String description() default "";

    /**
     * Usage note e.g. "$ command name (argument)"
     * @return
     */
    String usage() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy