blob: 1482a5382cdf3f52f9c14db6534a752c9c619654 [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.swt.graphics.Image;
import org.eclipse.ui.tests.views.properties.tabbed.Activator;
import org.eclipse.ui.tests.views.properties.tabbed.dynamic.section.descriptors.DynamicTestsBlackSectionDescriptor;
import org.eclipse.ui.tests.views.properties.tabbed.dynamic.views.DynamicTestsTypeMapper;
import org.eclipse.ui.views.properties.tabbed.AbstractTabDescriptor;
/**
* A tab descriptor for the dynamic tests view.
*
* @author Anthony Hunter
*/
public class DynamicTestsBlackTabDescriptor extends AbstractTabDescriptor {
private Image image;
public DynamicTestsBlackTabDescriptor() {
super();
getSectionDescriptors().add(
new DynamicTestsBlackSectionDescriptor(
new DynamicTestsTypeMapper()));
}
public String getAfterTab() {
return "ColorTab"; //$NON-NLS-1$
}
public String getCategory() {
return "default"; //$NON-NLS-1$
}
public String getId() {
return "BlackTab"; //$NON-NLS-1$
}
public Image getImage() {
if (image == null) {
image = Activator
.getImageDescriptor("icons/black_triangle.gif").createImage(); //$NON-NLS-1$
}
return image;
}
public String getLabel() {
return "Black"; //$NON-NLS-1$
}
public boolean isIndented() {
return true;
}
}