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

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


   * @param smallDesc The small description of the argument
   * @param longDesc The long description of the argument
   * @return This for chaining.
   */
  public UICommandAbstract<CTX, ARG> addArgument (String name, Class type, String desc) {
    this.arguments.put(name, new CommandArgument(name, type, desc)); return this;
  }
View Full Code Here

TOP

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

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.