Interface ILcdXMLSchemaLocationsMap

All Known Implementing Classes:
TLcdGML3SchemaLocationsMap, TLcdOGCFilterSchemaLocationsMap10, TLcdOGCFilterSchemaLocationsMap11, TLcdSLDSchemaLocationsMap10, TLcdXMLSchemaLocationsMap

public interface ILcdXMLSchemaLocationsMap
Deprecated.
Use of the com.format.xml.schema API has been deprecated. Instead, use the com.format.xml.bind.schema API.
Interface for retrieval of XML schema locations.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addSchemaLocation(String aNameSpaceURI, String aSchemaLocation)
    Deprecated.
    Adds the given schema to the schema provider's schema table.
    getLocation(String aNamespaceURI, int aIndex)
    Deprecated.
    Returns the schema location for the given namespace, at the given index.
    int
    getLocationCount(String aNamespaceURI)
    Deprecated.
    Returns the number of locations, registered for the given namespace.
    int
    Deprecated.
    Returns the number of namespaces, available in this map.
    getNamespaceURI(int aIndex)
    Deprecated.
    Returns the namespace at the given index.
  • Method Details

    • getNamespaceCount

      int getNamespaceCount()
      Deprecated.
      Returns the number of namespaces, available in this map.
      Returns:
      the number of namespaces, available in this map.
    • getNamespaceURI

      String getNamespaceURI(int aIndex)
      Deprecated.
      Returns the namespace at the given index.
      Parameters:
      aIndex - the index of the namespace to be returned
      Returns:
      the namespace at the given indexs.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getNamespaceCount()
    • getLocationCount

      int getLocationCount(String aNamespaceURI)
      Deprecated.
      Returns the number of locations, registered for the given namespace.
      Parameters:
      aNamespaceURI - the namespace for which to return the number of locations available.
      Returns:
      the number of locations, registered for the given namespace.
      Throws:
      NullPointerException - if aNameSpaceURI == null.
    • getLocation

      String getLocation(String aNamespaceURI, int aIndex)
      Deprecated.
      Returns the schema location for the given namespace, at the given index.
      Parameters:
      aNamespaceURI - the namespace for which to return a schema location.
      aIndex - the index of the location to be returned.
      Returns:
      the schema location for the given namespace, at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getLocationCount(aNameSpaceURI)
      NullPointerException - if aNameSpaceURI == null.
    • addSchemaLocation

      void addSchemaLocation(String aNameSpaceURI, String aSchemaLocation)
      Deprecated.
      Adds the given schema to the schema provider's schema table.
      Parameters:
      aNameSpaceURI - the namespace of the given location.
      aSchemaLocation - the location to be added.
      Throws:
      NullPointerException - if one of the arguments is null.