public interface IStepFilter
The following is an example of a step filter extension:
<extension point="org.eclipse.debug.core.stepFilters">
<stepFilters
class="com.example.ExampleStepFilters"
modelIdentifier="com.example.debug.model">
</stepFilters>
</extension>
In the example above, the specified step filter will be used for the
com.example.debug.model debug model.
Clients contributing step filters must implement this interface.
IStep| Modifier and Type | Method and Description |
|---|---|
boolean |
isFiltered(Object object)
Returns whether the step for the given object should be filtered.
|
boolean isFiltered(Object object)
object - the object to filter
Copyright (c) 2000, 2017 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.