javax.wsdl.extensions.schema

Interface Schema

public interface Schema extends ExtensibilityElement, Serializable

Represents a schema element. This is a lightweight schema wrapper that provides access to the schema DOM element, but does not parse the schema details. The implementor may provide alternative schema parsing if required.

Author: Jeremy Hughes

Method Summary
voidaddImport(SchemaImport importSchema)
Add an import to this LightWeightSchema
voidaddInclude(SchemaReference includeSchema)
Add an include to this LightWeightSchema
voidaddRedefine(SchemaReference redefineSchema)
Add a redefine to this LightWeightSchema
SchemaImportcreateImport()
Create a new schema import
SchemaReferencecreateInclude()
Create a new schema reference to represent an include.
SchemaReferencecreateRedefine()
Create a new schema reference to represent a redefine.
StringgetDocumentBaseURI()
Get the document base URI of this schema
ElementgetElement()
Get the DOM Element that represents this schema element.
MapgetImports()
Get a map of lists containing all the imports defined here.
ListgetIncludes()
Get a list containing all of the includes defined here.
ListgetRedefines()
Get a list containing all of the redefines defined here.
voidsetDocumentBaseURI(String documentBaseURI)
Set the document base URI of this schema definition.
voidsetElement(Element element)
Set the DOM Element that represents this schema element.

Method Detail

addImport

public void addImport(SchemaImport importSchema)
Add an import to this LightWeightSchema

Parameters: importSchema the import to be added

addInclude

public void addInclude(SchemaReference includeSchema)
Add an include to this LightWeightSchema

Parameters: includeSchema The include to be added, represented as a SchemaReference

addRedefine

public void addRedefine(SchemaReference redefineSchema)
Add a redefine to this LightWeightSchema

Parameters: redefineSchema The redefine to be added, represented as a SchemaReference

createImport

public SchemaImport createImport()
Create a new schema import

Returns: the newly created schema import

createInclude

public SchemaReference createInclude()
Create a new schema reference to represent an include.

Returns: the newly created SchemaReference

createRedefine

public SchemaReference createRedefine()
Create a new schema reference to represent a redefine.

Returns: the newly created SchemaReference

getDocumentBaseURI

public String getDocumentBaseURI()
Get the document base URI of this schema

Returns: the document base URI

getElement

public Element getElement()
Get the DOM Element that represents this schema element.

Returns: the DOM element representing this schema

getImports

public Map getImports()
Get a map of lists containing all the imports defined here. The map's keys are the namespaceURIs, and the map's values are lists. There is one list for each namespaceURI for which imports have been defined.

Returns: a map of lists of schema imports

getIncludes

public List getIncludes()
Get a list containing all of the includes defined here. The list elements are schema references.

Returns: a list of schema references.

getRedefines

public List getRedefines()
Get a list containing all of the redefines defined here. The list elements are schema references.

Returns: a list of schema references.

setDocumentBaseURI

public void setDocumentBaseURI(String documentBaseURI)
Set the document base URI of this schema definition. Can be used to represent the origin of the schema, and can be exploited when resolving relative URIs (e.g. in <import>s).

Parameters: documentBaseURI the document base URI of this schema

setElement

public void setElement(Element element)
Set the DOM Element that represents this schema element.

Parameters: element the DOM element representing this schema

Copyright © 2003,2005 IBM. All Rights Reserved.