package jetbrains.mps.ide.ui.dialogs.modules; /*Generated by MPS */ import java.awt.Dimension; public class NewSolutionSettings extends AbstractModuleCreationSettings { public NewSolutionSettings() { this(null); } public NewSolutionSettings(String projectPath) { super(projectPath, "Solution name:", "Solution location:"); this.setPreferredSize(new Dimension(400, 100)); reset(); } @Override protected String getDefaultModuleName() { return "NewSolution"; } @Override protected String getDefaultModulePath() { return getModuleRootPath("solutions"); } }