blob: f0c98952538e4bddc4b08506a9293abc87a42c3b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Red Hat Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Alexander Kurtakov - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.sh.internal.ui.wizards;
import org.eclipse.dltk.ui.wizards.NewSourceModulePage;
public class NewShellScriptFilePage extends NewSourceModulePage {
@Override
protected String getPageTitle() {
return "Shell Script";
}
@Override
protected String getPageDescription() {
return "Create a new Shell Script.";
}
@Override
protected String getRequiredNature() {
return null;
}
}