blob: a4254a8104d0574175ec6aa92e42d0c1cf6460aa [file] [log] [blame]
/**
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.papyrus.designer.languages.java.jdt.project;
import org.eclipse.jdt.ui.wizards.NewJavaProjectWizardPageOne;
public class JavaNamedProjectWizard extends NewJavaProjectWizardPageOne {
public JavaNamedProjectWizard(String projectName) {
this.setProjectName(projectName);
}
public void checkDialogSettings() {
Object tst = getDialogSettings();
System.err.println(tst);
}
}