blob: ab6e4b7ca19deaa8411ff22d468b01e59d4959be [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.section.descriptors;
import org.eclipse.jface.viewers.IFilter;
import org.eclipse.ui.tests.views.properties.tabbed.dynamic.filters.DynamicTestsCircleSectionFilter;
import org.eclipse.ui.tests.views.properties.tabbed.dynamic.sections.DynamicTestsCircleSection;
import org.eclipse.ui.views.properties.tabbed.AbstractSectionDescriptor;
import org.eclipse.ui.views.properties.tabbed.ISection;
import org.eclipse.ui.views.properties.tabbed.ITypeMapper;
/**
* A section descriptor for the dynamic tests view.
*
* @author Anthony Hunter
*/
public class DynamicTestsCircleSectionDescriptor extends
AbstractSectionDescriptor {
/**
* Constructor for DynamicTestsCircleSectionDescriptor.
*
* @param typeMapper
* the optional type mapper for the section.
*/
public DynamicTestsCircleSectionDescriptor(ITypeMapper typeMapper) {
super(typeMapper);
}
public IFilter getFilter() {
return new DynamicTestsCircleSectionFilter();
}
public String getId() {
return "DynamicTestsCircleSection"; //$NON-NLS-1$
}
public ISection getSectionClass() {
return new DynamicTestsCircleSection();
}
public String getTargetTab() {
return "ShapeTab"; //$NON-NLS-1$
}
}