blob: 2b6bb282e0b2b297ac47ddc9b6c3ecea2c1de8c6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.pde.internal.ui.templates.ide;
import org.eclipse.pde.internal.ui.templates.PDETemplateMessages;
import org.eclipse.pde.ui.IFieldData;
import org.eclipse.pde.ui.templates.ITemplateSection;
import org.eclipse.pde.ui.templates.NewPluginTemplateWizard;
public class PropertyPageNewWizard extends NewPluginTemplateWizard {
/**
* Constructor for PropertyPageNewWizard.
*/
public PropertyPageNewWizard() {
super();
}
public void init(IFieldData data) {
super.init(data);
setWindowTitle(PDETemplateMessages.PropertyPageNewWizard_wtitle);
}
/**
* @see NewPluginTemplateWizard#createTemplateSections()
*/
public ITemplateSection[] createTemplateSections() {
return new ITemplateSection[] {new PropertyPageTemplate()};
}
}