public Object newTypeSG(SGFactory pController, XSType pType, Context pClassContext, XsQName pName) throws SAXException {
return new JdbcTypeSG(this, (TypeSGChain) super.newTypeSG(pController, pType, pClassContext, pName), pType);
}
public Object newSchemaSG(SGFactory pController, XSSchema pSchema) throws SAXException {
SchemaSGChain chain = (SchemaSGChain) super.newSchemaSG(pController, pSchema);
chain = new JdbcSchemaSG(this, chain);
return chain;
}