Class TLcdSLDFeatureTypeStyleObjectFactoryLibrary10

java.lang.Object
com.luciad.ogc.sld.xml.TLcdSLDFeatureTypeStyleObjectFactoryLibrary10

@Deprecated public class TLcdSLDFeatureTypeStyleObjectFactoryLibrary10 extends Object
Deprecated.
A library that contains XML object factories for decoding feature type style elements according to the version 1.0 of the OGC Styled Layer Descriptor Implementation Specification.

Example of usage :


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

    • TLcdSLDFeatureTypeStyleObjectFactoryLibrary10

      public TLcdSLDFeatureTypeStyleObjectFactoryLibrary10()
      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.