public interface SmartSteppingFilter
It's strongly recommended not to implement this interface in client code. New methods can be added to this interface at any time to keep up with the JDI functionality.
Modifier and Type | Field and Description |
---|---|
static String |
PROP_EXCLUSION_PATTERNS
Property name constant.
|
Modifier and Type | Method and Description |
---|---|
void |
addExclusionPatterns(Set<String> patterns)
Adds a set of new class exclusion filters.
|
void |
addPropertyChangeListener(PropertyChangeListener l)
Adds property change listener.
|
String[] |
getExclusionPatterns()
Returns list of all exclusion patterns.
|
void |
removeExclusionPatterns(Set<String> patterns)
Removes given set of class exclusion filters from filter.
|
void |
removePropertyChangeListener(PropertyChangeListener l)
Removes property change listener.
|
static final String PROP_EXCLUSION_PATTERNS
void addExclusionPatterns(Set<String> patterns)
String
containing full class name. Filter can
begin or end with '*' to define more than one class, for example
"*.Ted", or "examples.texteditor.*".patterns
- a set of class exclusion filters to be addedvoid removeExclusionPatterns(Set<String> patterns)
patterns
- a set of class exclusion filters to be addedString[] getExclusionPatterns()
void addPropertyChangeListener(PropertyChangeListener l)
l
- new listener.void removePropertyChangeListener(PropertyChangeListener l)
l
- removed listener.