Interface IvMFilterTreeNode<X>
-
- All Known Subinterfaces:
IvMFilterTreeNodeComposite<X,Y>,IvMFilterTreeNodeLeaf<X>
- All Known Implementing Classes:
IvMFilterTreeNodeCompositeAbstract,IvMFilterTreeNodeLeafAbstract
public interface IvMFilterTreeNode<X>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancouldSomethingBeFiltered()voidgetExplanation(java.lang.StringBuilder result, int indent)A human-readable string explaining which traces will pass this filter, where each line is indented with indent.booleanstaysInLog(X element)
-
-
-
Method Detail
-
staysInLog
boolean staysInLog(X element)
-
getExplanation
void getExplanation(java.lang.StringBuilder result, int indent)A human-readable string explaining which traces will pass this filter, where each line is indented with indent.- Parameters:
result-indent-
-
couldSomethingBeFiltered
boolean couldSomethingBeFiltered()
- Returns:
- whether at least something could be filtered out. Meant to update the explanation of the parent.
-
-