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 Link icon

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary Link icon

    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 Link icon

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

    • ALcdXMLDocumentDescriptor Link icon

      public ALcdXMLDocumentDescriptor()
      Deprecated.
  • Method Details Link icon

    • getSourceName Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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.