blob: b726ff8ed0dab30c4a79af1413be77509e461c68 [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.tests.views.properties.tabbed.dynamic.tab.descriptors;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.views.properties.tabbed.ITabDescriptor;
import org.eclipse.ui.views.properties.tabbed.ITabDescriptorProvider;
/**
* A tab descriptor provider for the dynamic tests view.
*
* @author Anthony Hunter
*/
public class DynamicTestsTabDescriptorProvider implements
ITabDescriptorProvider {
public ITabDescriptor[] getTabDescriptors(IWorkbenchPart part,
ISelection selection) {
return new ITabDescriptor[] { new DynamicTestsElementTabDescriptor(),
new DynamicTestsShapeTabDescriptor(),
new DynamicTestsColorTabDescriptor(),
new DynamicTestsAdvancedTabDescriptor(),
new DynamicTestsBlackTabDescriptor() };
}
}