Example usage for org.apache.commons.cli2.builder CommandBuilder withDescription

List of usage examples for org.apache.commons.cli2.builder CommandBuilder withDescription

Introduction

In this page you can find the example usage for org.apache.commons.cli2.builder CommandBuilder withDescription.

Prototype

public CommandBuilder withDescription(final String newDescription) 

Source Link

Document

Specifies the description for the next Command that is created.

Usage

From source file:egat.cli.regret.RegretCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("compute the regret of each (pure) profile");
}

From source file:egat.cli.robustregret.RobustRegretCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("compute the regret of each action");
}

From source file:egat.cli.minform.MinFormCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("compute the min formation");
}

From source file:egat.cli.ieds.IEDSCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("remove dominated strategies using IEDS");
}

From source file:egat.cli.removeaction.RemoveActionCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("action-reduced game");
}

From source file:egat.cli.replicatordynamics.ReplicatorDynamicsCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("find sample NE using replicator dynamics");
}

From source file:egat.cli.neresponse.NEResponseCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("compute the NE-response of each strategy");
}

From source file:egat.cli.eminform.EpsilonMinFormCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("compute the e-min formation");
}

From source file:egat.cli.strategyregret.StrategyRegretCommandHandler.java

@Override
protected void addCommandDescription(CommandBuilder commandBuilder) {
    commandBuilder.withDescription("regret of each strategy");
}