Uses of Interface
com.sun.xml.xsom.parser.SchemaDocument
Package
Description
Interfaces that the client should use to access schema information.
Implementation of the
com.sun.xml.xsom
package.Parser that reads XML Schema documents and builds an
XSSchemaSet
object.Classes to parse XML Schema documents into objects of
com.sun.xml.xsom
package.-
Uses of SchemaDocument in com.sun.xml.xsom
Modifier and TypeMethodDescriptionXSComponent.getSourceDocument()
Gets theSchemaDocument
that indicates which document this component was defined in.XSSchema.getSourceDocument()
Deprecated. -
Uses of SchemaDocument in com.sun.xml.xsom.impl
Modifier and TypeMethodDescriptionComponentImpl.getSourceDocument()
SchemaImpl.getSourceDocument()
-
Uses of SchemaDocument in com.sun.xml.xsom.impl.parser
Modifier and TypeMethodDescriptionSchemaDocumentImpl.getImportedDocuments
(String targetNamespace) SchemaDocumentImpl.getIncludedDocuments()
SchemaDocumentImpl.getReferencedDocuments()
SchemaDocumentImpl.getReferers()
Modifier and TypeMethodDescriptionboolean
SchemaDocumentImpl.imports
(SchemaDocument doc) boolean
SchemaDocumentImpl.includes
(SchemaDocument doc) -
Uses of SchemaDocument in com.sun.xml.xsom.parser
Modifier and TypeMethodDescriptionXSOMParser.getDocuments()
Gets the set ofSchemaDocument
that represents parsed documents so far.SchemaDocument.getImportedDocuments
(String targetNamespace) Gets theSchemaDocument
s that are imported from this document.SchemaDocument.getIncludedDocuments()
Gets theSchemaDocument
s that are included from this document.SchemaDocument.getReferencedDocuments()
Set ofSchemaDocument
s that are included/imported from this document.SchemaDocument.getReferers()
Set ofSchemaDocument
s that include/import this document.Modifier and TypeMethodDescriptionboolean
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.
XSSchema
and not fromXSComponent
, there's something wrong with your code.