@Override protected void applyEditorTo(JstdRunConfiguration runConfiguration) throws ConfigurationException { JstdRunSettings.Builder builder = new JstdRunSettings.Builder(); myRootSection.applyTo(builder); runConfiguration.setRunSettings(builder.build()); }
@Override protected void resetEditorFrom(JstdRunConfiguration runConfiguration) { JstdRunSettings runSettings = runConfiguration.getRunSettings(); myRootSection.resetFrom(runSettings); }