public interface IStepFilters
IStep
), the step implementation must respect
the state of the step filters as defined by this interface.
This allows step filters to be toggled on/off for
all stepping operations (in, over, return).
Step filter management is debug model specific - this interface is used only to turn them on/off.
In 2.1, the IFilteredStep
interface was used
to implement step filtering. The IFilteredStep
interface is now deprecated, and this interface should be used
in its place to allow filters to be applied to any step
function.
Clients may implement this interface. Debug targets that support step filters should implement this interface.
IStep
Modifier and Type | Method and Description |
---|---|
boolean |
isStepFiltersEnabled()
Returns whether step filters are currently enabled in this
debug target.
|
void |
setStepFiltersEnabled(boolean enabled)
Sets whether step filters are enabled in this debug target.
|
boolean |
supportsStepFilters()
Returns whether this debug target supports step filters.
|
boolean supportsStepFilters()
boolean isStepFiltersEnabled()
void setStepFiltersEnabled(boolean enabled)
enabled
- whether step filters are enabled in this debug target
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.