Package com.luciad.wms.sld.xml
Class TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10
java.lang.Object
com.luciad.wms.sld.xml.TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10
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 Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ILcdXMLObjectFactory
createObjectFactory
(TLcdXMLName aTypeName, TLcdXMLName[] aElementNames) Deprecated.Returns a newILcdXMLObjectFactory
for the given type and sub elements.static TLcdXMLName[]
getXMLElementNames
(int aIndex) Deprecated.Returns the sub elements names of the XML type, supported by this provider, at the given index.static TLcdXMLName
getXMLType
(int aIndex) Deprecated.Returns the name of the XML type, supported by this provider, at the given index.static int
Deprecated.Returns the number of XML types that are supported by this provider.
-
Constructor Details
-
TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10
public TLcdSLDStyledLayerDescriptorObjectFactoryLibrary10()Deprecated.
-
-
Method Details
-
createObjectFactory
public static ILcdXMLObjectFactory createObjectFactory(TLcdXMLName aTypeName, TLcdXMLName[] aElementNames) Deprecated.Returns a newILcdXMLObjectFactory
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
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
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.
-