예제 #1
0
  /**
   * Creates a MonkeyOptionsComposite object.
   *
   * @param parent the parent composite
   */
  public MonkeyOptionsComposite(Composite parent, String monkeyOptions) {
    super(parent);

    MonkeyOptionsMgt.loadFromCommandLine(monkeyOptions);
    createUI();

    // Set context Help
    // PlatformUI.getWorkbench().getHelpSystem().setHelp(parent,
    // IAndroidDeviceConstants.STARTUP_OPTIONS_HELP);
  }
예제 #2
0
 /**
  * Reload the values being displayed in the UI as well as the ones in the model.
  *
  * @param monkeyOptions commandLine the command line used to start the emulator
  */
 public void reloadValues(String commandLine) {
   MonkeyOptionsMgt.loadFromCommandLine(commandLine);
 }