blob: cf987005bd6c1711d085f9ed5779b6a78050016a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Red Hat Inc. and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Alexander Kurtakov - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.sh.internal.ui.wizards;
import org.eclipse.dltk.ui.DLTKUIPlugin;
import org.eclipse.dltk.ui.wizards.NewSourceModulePage;
import org.eclipse.dltk.ui.wizards.NewSourceModuleWizard;
public class NewShellScriptFileWizard extends NewSourceModuleWizard {
public NewShellScriptFileWizard() {
setWindowTitle("New Shell Script");
setDialogSettings(DLTKUIPlugin.getDefault().getDialogSettings());
}
@Override
protected NewSourceModulePage createNewSourceModulePage() {
return new NewShellScriptFilePage();
}
}