Class ALcdXMLDocumentDescriptor

java.lang.Object
com.luciad.format.xml.bind.ALcdXMLDocumentDescriptor

@Deprecated public abstract class ALcdXMLDocumentDescriptor extends Object
Deprecated.
The use of this class has been deprecated. Model descriptors for XML formats should instead implement ILcdDataModelDescriptor.
A descriptor providing metadata about Java objects bound to an XML document.

It provides information about:

  • The system id (source name) of an XML document to which the object is bound.
  • The list of schema namespaces with their corresponding schema location as declared in the XML document to which this object is bound.
  • A namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.
Since:
9.0
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Returns a namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.
    Deprecated.
    Returns a map containing for each schema its namespace with corresponding schema location, as declared in the XML document to which this object is bound.
    Deprecated.
    Returns the system id of the XML document to which this ALcdXMLDescriptor's Java object is bound.
    void
    Deprecated.
    Sets a namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.
    void
    setSourceName(String aSourceName)
    Deprecated.
    Sets the system id of the XML document to which this ALcdXMLDescriptor's Java object is bound.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ALcdXMLDocumentDescriptor

      public ALcdXMLDocumentDescriptor()
      Deprecated.
  • Method Details

    • getSourceName

      public String getSourceName()
      Deprecated.
      Returns the system id of the XML document to which this ALcdXMLDescriptor's Java object is bound.
      Returns:
      the system id of the XML document to which this ALcdXMLDescriptor's Java object is bound.
    • setSourceName

      public void setSourceName(String aSourceName)
      Deprecated.
      Sets the system id of the XML document to which this ALcdXMLDescriptor's Java object is bound.
      Parameters:
      aSourceName - the system id of the XML document to which this ALcdXMLDescriptor's Java object is bound.
    • getSchemaLocations

      public Map<String,String> getSchemaLocations()
      Deprecated.
      Returns a map containing for each schema its namespace with corresponding schema location, as declared in the XML document to which this object is bound.
      Returns:
      a map containing for each schema its namespace with corresponding schema location.
    • getNamespaceContext

      public NamespaceContext getNamespaceContext()
      Deprecated.
      Returns a namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.
      Returns:
      a namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.
    • setNamespaceContext

      public void setNamespaceContext(NamespaceContext aNamespaceContext)
      Deprecated.
      Sets a namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.
      Parameters:
      aNamespaceContext - a namespace context providing a default namespace-to-prefix mapping for each of the namespaces used within the XML document, and defining how to interpret XPath expressions within the object.