Package net.sourceforge.javautil.ui.command.UICommand

Examples of net.sourceforge.javautil.ui.command.UICommand.CommandFlag


   * @param desc The description of the flag
   * @param defaultValue The default value for the flag
   * @return This for chaining.
   */
  public UICommandAbstract<CTX, ARG> addFlag (String name, String desc, boolean defaultValue) {
    this.flags.put(name, new CommandFlag(name, desc, defaultValue)); return this;
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.ui.command.UICommand.CommandFlag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.