162163164165166167168169170171
return schema.getAttributeDecl(localName); } public XSModelGroupDecl getModelGroupDecl( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getModelGroupDecl(localName); }
169170171172173174175176177178
return schema.getModelGroupDecl(localName); } public XSAttGroupDecl getAttGroupDecl( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getAttGroupDecl(localName); }
176177178179180181182183184185
return schema.getAttGroupDecl(localName); } public XSComplexType getComplexType( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getComplexType(localName); }
183184185186187188189190191192
return schema.getComplexType(localName); } public XSIdentityConstraint getIdentityConstraint(String ns, String localName) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getIdentityConstraint(localName); }
979899100101102103104105106
public final Collection<XSSchema> getSchemas() { return readonlySchemaList; } public XSType getType(String ns, String localName) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getType(localName); }
104105106107108109110111112113
return schema.getType(localName); } public XSSimpleType getSimpleType( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getSimpleType(localName); }
111112113114115116117118119120
return schema.getSimpleType(localName); } public XSElementDecl getElementDecl( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getElementDecl(localName); }
118119120121122123124125126127
return schema.getElementDecl(localName); } public XSAttributeDecl getAttributeDecl( String ns, String localName ) { XSSchema schema = getSchema(ns); if(schema==null) return null; return schema.getAttributeDecl(localName); }
125126127128129130131132133134
132133134135136137138139140141