blob: 76991cda9f9509c7d41d8fa6263d7f92ba66551b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ui.views.properties.tabbed;
import org.eclipse.jface.viewers.IStructuredContentProvider;
/**
* A content provider for the tabbed property sheet page's list of tabs. Used by
* a section that overrides the tabs that are provided by the tabbed property
* registry with a new list of tabs.
* <p>
* The overridable tab list is a content provider that provides both the
* sections and the tab labels.
* @author Anthony Hunter
* @since 3.4
*/
public interface IOverridableTabListContentProvider extends IStructuredContentProvider {
/**
* Override the tabs displayed in the tab list with a new list of tabs.
*/
public void overrideTabs();
}