blob: a06aec4f0f8c395576be55a34807d876f40204f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2007 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.PDETemplateSection;
public abstract class BaseEditorTemplate extends PDETemplateSection {
public String getUsedExtensionPoint() {
return "org.eclipse.ui.editors"; //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.pde.ui.templates.ITemplateSection#getFoldersToInclude()
*/
public String[] getNewFiles() {
return new String[] {"icons/"}; //$NON-NLS-1$
}
}