@Override protected void applyEditorTo(@NotNull PyCCRunTestConfiguration s) throws ConfigurationException { AbstractPythonRunConfiguration.copyParams(myForm, s); s.setPathToTest(myPathToTestFileField.getText()); }
@Override protected void resetEditorFrom(@NotNull PyCCRunTestConfiguration s) { AbstractPythonRunConfiguration.copyParams(s, myForm); myPathToTestFileField.setText(s.getPathToTest()); }