Package | Description |
---|---|
com.sun.xml.xsom |
Interfaces that the client should use to access schema information.
|
com.sun.xml.xsom.impl |
Implementation of the
com.sun.xml.xsom package. |
com.sun.xml.xsom.impl.parser |
Parser that reads XML Schema documents and builds an
XSSchemaSet object. |
com.sun.xml.xsom.parser |
Classes to parse XML Schema documents into objects of
com.sun.xml.xsom package. |
Modifier and Type | Method | Description |
---|---|---|
SchemaDocument |
XSComponent.getSourceDocument() |
Gets the
SchemaDocument 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 from
XSSchema and not from XSComponent ,
there's something wrong with your code. |
Modifier and Type | Method | Description |
---|---|---|
SchemaDocument |
ComponentImpl.getSourceDocument() |
|
SchemaDocument |
SchemaImpl.getSourceDocument() |
Modifier and Type | Class | Description |
---|---|---|
class |
SchemaDocumentImpl |
SchemaDocument implementation. |
Modifier and Type | Method | Description |
---|---|---|
Set<SchemaDocument> |
SchemaDocumentImpl.getImportedDocuments(String targetNamespace) |
|
Set<SchemaDocument> |
SchemaDocumentImpl.getIncludedDocuments() |
|
Set<SchemaDocument> |
SchemaDocumentImpl.getReferencedDocuments() |
|
Set<SchemaDocument> |
SchemaDocumentImpl.getReferers() |
Modifier and Type | Method | Description |
---|---|---|
boolean |
SchemaDocumentImpl.imports(SchemaDocument doc) |
|
boolean |
SchemaDocumentImpl.includes(SchemaDocument doc) |
Modifier and Type | Method | Description |
---|---|---|
Set<SchemaDocument> |
XSOMParser.getDocuments() |
Gets the set of
SchemaDocument that represents
parsed documents so far. |
Set<SchemaDocument> |
SchemaDocument.getImportedDocuments(String targetNamespace) |
Gets the
SchemaDocument s that are imported from this document. |
Set<SchemaDocument> |
SchemaDocument.getIncludedDocuments() |
Gets the
SchemaDocument s that are included from this document. |
Set<SchemaDocument> |
SchemaDocument.getReferencedDocuments() |
Set of
SchemaDocument s that are included/imported from this document. |
Set<SchemaDocument> |
SchemaDocument.getReferers() |
Set of
SchemaDocument s that include/import this document. |
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.
|
Copyright © 2018 Oracle Corporation. All rights reserved.