Package org.bladerunnerjs.plugin.plugins.commands.core

Examples of org.bladerunnerjs.plugin.plugins.commands.core.VersionCommand


  public CommandList(BRJS brjs, List<CommandPlugin> pluginCommands)
  {
    this.pluginCommands = pluginCommands;
   
    CommandPlugin helpCommand = new HelpCommand();
    CommandPlugin versionCommand = new VersionCommand();
   
    helpCommand.setBRJS(brjs);
    versionCommand.setBRJS(brjs);
   
    coreCommands.add(helpCommand);
    coreCommands.add(versionCommand);
  }
View Full Code Here

TOP

Related Classes of org.bladerunnerjs.plugin.plugins.commands.core.VersionCommand

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.