*/
public void exportComponents(Destination destination) throws SaxonApiException {
try {
Receiver out = destination.getReceiver(config);
SchemaModelSerializer serializer = new SchemaModelSerializer(config, out);
serializer.serialize();
} catch (XPathException e) {
throw new SaxonApiException(e);
}
}