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

org.ow2.mind.cli.CmdFlag Maven / Gradle / Ivy

The newest version!

package org.ow2.mind.cli;

/**
 * An option that may be present or not on a command line.
 */
public class CmdFlag extends CmdOption {

  /** @see CmdOption#CmdOption(String, String, String, String) */
  public CmdFlag(final String id, final String shortName,
      final String longName, final String description) {
    super(id, shortName, longName, description);
  }

  void setPresent(final CommandLine commandLine) {
    commandLine.setOptionValue(this, "");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy