blob: 21cf957683459e7b4bbeb49c73a84285d59b126f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 RCP Vision (http://www.rcp-vision.com) 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:
* Francesco Guidieri - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.parsley.dsl.ui.wizard.template;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* @author Francesco Guidieri
*
*/
public interface IWizardTemplate {
public String getLabel();
public String getDescription();
public String getOrGenerateViewClass(IProject project, String projectName,
String packagePath, IProgressMonitor monitor) throws CoreException;
}