blob: 79c0ce9482dec2759e9bceec98be8e306649f405 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Red Hat Inc. 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:
* Sopot Cela (Red Hat Inc.)
*******************************************************************************/
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 ExtensibleEditorNewWizard extends NewPluginTemplateWizard {
@Override
public void init(IFieldData data) {
super.init(data);
setWindowTitle(PDETemplateMessages.ExtensibleEditorNewWizard_wtitle);
}
@Override
public ITemplateSection[] createTemplateSections() {
return new ITemplateSection[] { new ExtensbileEditorTemplate() };
}
}