blob: a1deade02c99dd45e3f8b2ff09c85536dad1e8b5 [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 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 Layout provider plug-in sample.
*/
public class LayoutNewWizard
extends ProjectUnzipperNewWizard {
/** Wizard page title. */
private static final String LAYOUTSERVICE_WIZARD_CREATEPROJECTPAGE_TITLE = ResourceManager
.getI18NString("LayoutService.wizard.createProjectPage.title"); //$NON-NLS-1$
/** Wizard page description. */
private static final String LAYOUTSERVICE_WIZARD_CREATEPROJECTPAGE_DESC = ResourceManager
.getI18NString("LayoutService.wizard.createProjectPage.desc"); //$NON-NLS-1$
/**
* Constructor
*/
public LayoutNewWizard() {
super("exampleProjectLocation", //$NON-NLS-1$
LAYOUTSERVICE_WIZARD_CREATEPROJECTPAGE_TITLE,
LAYOUTSERVICE_WIZARD_CREATEPROJECTPAGE_DESC, GmfExamplesPlugin
.getDefault().find(new Path("examples/servicesLayout.zip"))); //$NON-NLS-1$
}
}