blob: cfeec535debb378f2c8f0be762968cc1fde16450 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Aston University.
* 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:
* Antonio Garcia-Dominguez - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.examples.testlang.dt.wizard;
import org.eclipse.epsilon.common.dt.wizards.AbstractNewFileWizard2;
import org.eclipse.ui.INewWizard;
public class NewTestLangWizard extends AbstractNewFileWizard2 implements INewWizard {
@Override
public String getTitle() {
return "New TestLang Program";
}
@Override
public String getExtension() {
return "eolt";
}
@Override
public String getDescription() {
return "This wizard creates a new script with *.eolt extension.";
}
}