Interface ITraceFilter
-
- All Known Implementing Classes:
AllButFailureTraceFilter,NoTraceFilter,TopLevelExecutionTraceFilter
public interface ITraceFilterAllows to filter trace output.- Author:
- Holger Eichelberger x
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classITraceFilter.LanguageElementKindAbstracted kinds of language element (VIL, VTL, rt-VTL) to trace.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisEnabled(ITraceFilter.LanguageElementKind kind)Returns whether tracing on the given language element is enabled.booleanisWarningEnabled()Returns whether warnings are enabled.
-
-
-
Method Detail
-
isEnabled
boolean isEnabled(ITraceFilter.LanguageElementKind kind)
Returns whether tracing on the given language element is enabled.- Parameters:
kind- the element kind- Returns:
truefor tracing,falseelse
-
isWarningEnabled
boolean isWarningEnabled()
Returns whether warnings are enabled.- Returns:
truefor warnings,falseelse
-
-