blob: b09a0822c0120cef33d33e539c52ecb98f30b759 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.dtd.ui;
import org.eclipse.wst.sse.ui.edit.util.ActionContributor;
/**
* XMLEditorActionContributor
*
* This class should not be used inside multi page editor's
* ActionBarContributor, since cascaded init() call from the
* ActionBarContributor will causes exception and it leads to lose whole
* toolbars.
*
* Instead, use SourcePageActionContributor for source page contributor of
* multi page editor.
*
* Note that this class is still valid for single page editor.
*/
public class ActionContributorDTD extends ActionContributor {
protected static final String[] EDITOR_IDS = {"org.eclipse.wst.dtd.ui.StructuredTextEditorDTD", "org.eclipse.wst.sse.ui.StructuredTextEditor"}; //$NON-NLS-1$ //$NON-NLS-2$
/*
* (non-Javadoc)
*
* @see org.eclipse.wst.sse.ui.edit.util.ActionContributor#getExtensionIDs()
*/
protected String[] getExtensionIDs() {
return EDITOR_IDS;
}
}