Package net.sf.saxon.lib
Interface ValidationStatisticsRecipient
-
- All Known Implementing Classes:
StatisticsReporter
public interface ValidationStatisticsRecipient
Defines a class that is notified of validation statistics at the end of a validation episode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notifyValidationStatistics(java.util.Map<SchemaComponent,java.lang.Integer> statistics)
Notify the validation statistics
-
-
-
Method Detail
-
notifyValidationStatistics
void notifyValidationStatistics(java.util.Map<SchemaComponent,java.lang.Integer> statistics) throws SaxonApiException
Notify the validation statistics- Parameters:
statistics
- the statistics, in the form of a map from schema components (currently, element declarations and schema types) to a count of how often the component was used during the validation episode- Throws:
SaxonApiException
- if any error occurs
-
-