Uses of Interface
com.sun.xml.xsom.parser.SchemaDocument
-
Packages that use SchemaDocument Package Description com.sun.xml.xsom Interfaces that the client should use to access schema information.com.sun.xml.xsom.impl Implementation of thecom.sun.xml.xsom
package.com.sun.xml.xsom.impl.parser Parser that reads XML Schema documents and builds anXSSchemaSet
object.com.sun.xml.xsom.parser Classes to parse XML Schema documents into objects ofcom.sun.xml.xsom
package. -
-
Uses of SchemaDocument in com.sun.xml.xsom
Methods in com.sun.xml.xsom that return SchemaDocument Modifier and Type Method Description SchemaDocument
XSComponent. getSourceDocument()
Gets theSchemaDocument
that indicates which document this component was defined in.SchemaDocument
XSSchema. getSourceDocument()
Deprecated.Since this method always returns null, if you are calling this method fromXSSchema
and not fromXSComponent
, there's something wrong with your code. -
Uses of SchemaDocument in com.sun.xml.xsom.impl
Methods in com.sun.xml.xsom.impl that return SchemaDocument Modifier and Type Method Description SchemaDocument
ComponentImpl. getSourceDocument()
SchemaDocument
SchemaImpl. getSourceDocument()
-
Uses of SchemaDocument in com.sun.xml.xsom.impl.parser
Classes in com.sun.xml.xsom.impl.parser that implement SchemaDocument Modifier and Type Class Description class
SchemaDocumentImpl
SchemaDocument
implementation.Methods in com.sun.xml.xsom.impl.parser that return types with arguments of type SchemaDocument Modifier and Type Method Description java.util.Set<SchemaDocument>
SchemaDocumentImpl. getImportedDocuments(java.lang.String targetNamespace)
java.util.Set<SchemaDocument>
SchemaDocumentImpl. getIncludedDocuments()
java.util.Set<SchemaDocument>
SchemaDocumentImpl. getReferencedDocuments()
java.util.Set<SchemaDocument>
SchemaDocumentImpl. getReferers()
Methods in com.sun.xml.xsom.impl.parser with parameters of type SchemaDocument Modifier and Type Method Description boolean
SchemaDocumentImpl. imports(SchemaDocument doc)
boolean
SchemaDocumentImpl. includes(SchemaDocument doc)
-
Uses of SchemaDocument in com.sun.xml.xsom.parser
Methods in com.sun.xml.xsom.parser that return types with arguments of type SchemaDocument Modifier and Type Method Description java.util.Set<SchemaDocument>
XSOMParser. getDocuments()
Gets the set ofSchemaDocument
that represents parsed documents so far.java.util.Set<SchemaDocument>
SchemaDocument. getImportedDocuments(java.lang.String targetNamespace)
Gets theSchemaDocument
s that are imported from this document.java.util.Set<SchemaDocument>
SchemaDocument. getIncludedDocuments()
Gets theSchemaDocument
s that are included from this document.java.util.Set<SchemaDocument>
SchemaDocument. getReferencedDocuments()
Set ofSchemaDocument
s that are included/imported from this document.java.util.Set<SchemaDocument>
SchemaDocument. getReferers()
Set ofSchemaDocument
s that include/import this document.Methods in com.sun.xml.xsom.parser with parameters of type SchemaDocument Modifier and Type Method Description boolean
SchemaDocument. imports(SchemaDocument doc)
Returns true if this document imports the given document.boolean
SchemaDocument. includes(SchemaDocument doc)
Returns true if this document includes the given document.
-