/** * 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); }
/** * 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); }