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

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


   * @param description The description of the option
   * @param defaultDesc The description of the default value for the option
   * @return This for chaining.
   */
  public UICommandAbstract<CTX, ARG> addOption (String name, Class type, String description, String defaultDesc) {
    this.options.put(name, new CommandOption(name, type, description, defaultDesc)); return this;
  }
View Full Code Here

TOP

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

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.