blob: 0a08c80cf72c17ff29cdda03f0d441f5e3a7a427 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.examples.runtime.ui.pde.internal.wizards;
import java.net.URL;
import org.eclipse.core.runtime.Path;
import org.eclipse.gmf.examples.runtime.ui.pde.internal.GmfExamplesPlugin;
import org.eclipse.gmf.examples.runtime.ui.pde.internal.l10n.ResourceManager;
/**
* This wizard generates the EMF Query Statements plug-in sample.
*/
public class EmfQueryStatementsNewWizard
extends ProjectUnzipperNewWizard {
/**
* Constructor
*/
public EmfQueryStatementsNewWizard() {
super("exampleProjectLocation", //$NON-NLS-1$
ResourceManager.getI18NString("emf.query.statements.title"), //$NON-NLS-1$
ResourceManager.getI18NString("emf.query.statements.desc"), //$NON-NLS-1$
new URL[] {
GmfExamplesPlugin.getDefault().find(new Path("examples/emf-query-statements.zip")), //$NON-NLS-1$
GmfExamplesPlugin.getDefault().find(new Path("examples/ext-library.zip")), //$NON-NLS-1$
GmfExamplesPlugin.getDefault().find(new Path("examples/ext-library-edit.zip")), //$NON-NLS-1$
GmfExamplesPlugin.getDefault().find(new Path("examples/ext-library-editor.zip")) //$NON-NLS-1$
},
new String[] {
"{0}", //$NON-NLS-1$
"org.eclipse.emf.examples.library", //$NON-NLS-1$
"org.eclipse.emf.examples.library.edit", //$NON-NLS-1$
"org.eclipse.emf.examples.library.editor", //$NON-NLS-1$
}
);
}
}