@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); }
public JstdRunConfigurationEditor(Project project) { myRootSection = new RootSection(); myRootComponent = myRootSection.getComponent(new CreationContext(project)); }