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