Class TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10

java.lang.Object
com.luciad.wms.sld.xml.TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10

@Deprecated public class TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10 extends Object
Deprecated.
A library that contains XML object factories for OGC Styled Layer Descriptor elements according to the version 1.0 of the specification.

Example of usage :


 for (int i = 0; i < TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10.getXMLTypeCount(); i++) {
   TLcdXMLName xmlType = TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10.getXMLType(i);
   TLcdXMLName[] xmlElementNames = TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10.getXMLElementNames(i);
   ILcdXMLObjectFactory objectFactory = TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10.createObjectFactory(xmlType, xmlElementNames);
   typedObjectFactoryProvider.registerFactory(xmlType, xmlElementNames, objectFactory);
 }
 
See Also:
  • Constructor Details

    • TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10

      public TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10()
      Deprecated.
  • Method Details

    • createObjectFactory

      public static ILcdXMLObjectFactory createObjectFactory(TLcdXMLName aTypeName, TLcdXMLName[] aElementNames)
      Deprecated.
      Returns a new ILcdXMLObjectFactory for the given type and sub elements.
      Parameters:
      aTypeName - the name of the XML type.
      aElementNames - the sub elements names.
      Returns:
      the object factory.
    • getXMLElementNames

      public static TLcdXMLName[] getXMLElementNames(int aIndex)
      Deprecated.
      Returns the sub elements names of the XML type, supported by this provider, at the given index.
      Parameters:
      aIndex - the given index.
      Returns:
      the names the sub elements names.
    • getXMLType

      public static TLcdXMLName getXMLType(int aIndex)
      Deprecated.
      Returns the name of the XML type, supported by this provider, at the given index.
      Parameters:
      aIndex - the given index.
      Returns:
      the name of the XML type.
    • getXMLTypeCount

      public static int getXMLTypeCount()
      Deprecated.
      Returns the number of XML types that are supported by this provider.
      Returns:
      the number of XML types that are supported by this provider.