Esempio n. 1
0
 /**
  * Fills the command line options.
  *
  * @param options the options to fill
  */
 protected void fillOptions(final Options options) {
   // The name of the holding virtual machine
   final Option vmName =
       new Option(
           new Character(OPTION_TEMPLATE_NAME).toString(),
           "holdingVMName",
           true,
           "The name of the virtual machine within which one this RMNode is to be started.");
   vmName.setRequired(true);
   vmName.setArgName("name");
   options.addOption(vmName);
   super.fillOptions(options);
 }