protected void processTypes( Types types,
Node parentNode ) throws Exception {
if (types == null) {
return;
}
XsdReader xsdReader = new XsdReader(context);
for (Object obj : types.getExtensibilityElements()) {
if (obj instanceof Schema) {
processSchema((Schema)obj, parentNode, xsdReader);
}
}