Example usage for org.apache.commons.cli Option subclass-usage

List of usage examples for org.apache.commons.cli Option subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.cli Option subclass-usage.

Usage

From source file org.apache.easyant.man.EasyantOption.java

/**
 * Base class for all classes implementing functionality for project switches that are accepted on command line when
 * invoking easyant.
 * 
 * For example, <br>
 * easyant -listTargets

From source file de.rrze.idmone.utils.jidgen.cli.IdGenOption.java

/**
 * This class is an extension to the org.apache.commons.cli.Option
 * class with some modifications to make it fit to the needs
 * jidgen.
 * 
 * @see <a href="http://commons.apache.org/cli/api-release/org/apache/commons/cli/Option.html">http://commons.apache.org/cli/api-release/org/apache/commons/cli/Option.html</a>

From source file org.splandroid.tr.CommandLineOption.java

class CommandLineOption extends Option {
    private Object defaultValue;

    public CommandLineOption(String opt, boolean hasArg, String description, String defaultValue)
            throws IllegalArgumentException {
        super(opt, hasArg, createFullDescription(description, defaultValue));