blob: 5783f87b91bb165721625122cbc8f79b8541d8a7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2008 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.text;
import org.eclipse.jface.viewers.IFilter;
/**
* A section descriptor for the text test view that should be filtered and not
* shown.
*
* @author Anthony Hunter
* @since 3.4
*/
public class TextTestsSectionDescriptor2 extends TextTestsSectionDescriptor {
public TextTestsSectionDescriptor2(String word, String tabId) {
super(word, tabId);
}
/*
* @see
* org.eclipse.ui.views.properties.tabbed.AbstractSectionDescriptor#getFilter
* ()
*/
public IFilter getFilter() {
return new IFilter() {
public boolean select(Object toTest) {
return false;
}
};
}
}