154155156157158159160161162163
return schema.getModelGroupDecl(localName); } public XSAttGroupDecl getAttGroupDecl( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getAttGroupDecl(localName); }
161162163164165166167168169170
return schema.getAttGroupDecl(localName); } public XSComplexType getComplexType( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getComplexType(localName); }
168169170171172173174175176177
return schema.getComplexType(localName); } public XSIdentityConstraint getIdentityConstraint(String ns, String localName) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getIdentityConstraint(localName); }