TPTP 4.4.0 Testing Tools Project
Public API Specification

org.eclipse.hyades.test.ui.navigator
Interface IHyadesTestNavigatorFilter

All Superinterfaces:
org.eclipse.core.runtime.IExecutableExtension

public interface IHyadesTestNavigatorFilter
extends org.eclipse.core.runtime.IExecutableExtension

Interface used to filter element in the Hyades Test Navigator. This interface should be implemented by tool vendor and used in the org.eclipse.hyades.test.ui.testNavigatorFilter extension point.

The only one method to be implemented is isFiltered, this method returns true if the object parameter should be filtered in the tree and false if it should be diplayed.


Method Summary
 boolean isFiltered(java.lang.Object object)
          Method to implement filters of objects found in the test navigator.
 
Methods inherited from interface org.eclipse.core.runtime.IExecutableExtension
setInitializationData
 

Method Detail

isFiltered

public boolean isFiltered(java.lang.Object object)
Method to implement filters of objects found in the test navigator.

Parameters:
object - Object found in the test navigator content providers (this object is a child of the displayed element).
Returns:
true if the parameter object should be filtered by the navigator and false otherwize.

TPTP 4.4.0 Testing Tools Project
Public API Specification