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.xsompackage.com.sun.xml.xsom.impl.parser Parser that reads XML Schema documents and builds anXSSchemaSetobject.com.sun.xml.xsom.parser Classes to parse XML Schema documents into objects ofcom.sun.xml.xsompackage. -
-
Uses of SchemaDocument in com.sun.xml.xsom
Methods in com.sun.xml.xsom that return SchemaDocument Modifier and Type Method Description SchemaDocumentXSComponent. getSourceDocument()Gets theSchemaDocumentthat indicates which document this component was defined in.SchemaDocumentXSSchema. getSourceDocument()Deprecated.Since this method always returns null, if you are calling this method fromXSSchemaand 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 SchemaDocumentComponentImpl. getSourceDocument()SchemaDocumentSchemaImpl. 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 classSchemaDocumentImplSchemaDocumentimplementation.Methods in com.sun.xml.xsom.impl.parser that return types with arguments of type SchemaDocument Modifier and Type Method Description Set<SchemaDocument>SchemaDocumentImpl. getImportedDocuments(String targetNamespace)Set<SchemaDocument>SchemaDocumentImpl. getIncludedDocuments()Set<SchemaDocument>SchemaDocumentImpl. getReferencedDocuments()Set<SchemaDocument>SchemaDocumentImpl. getReferers()Methods in com.sun.xml.xsom.impl.parser with parameters of type SchemaDocument Modifier and Type Method Description booleanSchemaDocumentImpl. imports(SchemaDocument doc)booleanSchemaDocumentImpl. 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 Set<SchemaDocument>XSOMParser. getDocuments()Gets the set ofSchemaDocumentthat represents parsed documents so far.Set<SchemaDocument>SchemaDocument. getImportedDocuments(String targetNamespace)Gets theSchemaDocuments that are imported from this document.Set<SchemaDocument>SchemaDocument. getIncludedDocuments()Gets theSchemaDocuments that are included from this document.Set<SchemaDocument>SchemaDocument. getReferencedDocuments()Set ofSchemaDocuments that are included/imported from this document.Set<SchemaDocument>SchemaDocument. getReferers()Set ofSchemaDocuments that include/import this document.Methods in com.sun.xml.xsom.parser with parameters of type SchemaDocument Modifier and Type Method Description booleanSchemaDocument. imports(SchemaDocument doc)Returns true if this document imports the given document.booleanSchemaDocument. includes(SchemaDocument doc)Returns true if this document includes the given document.
-