Package com.luciad.format.gml3.name
Class TLcdGML2ElementNameProvider
java.lang.Object
com.luciad.format.gml3.name.TLcdGML2ElementNameProvider
- All Implemented Interfaces:
ILcdXMLElementNameProvider
Deprecated.
An
ILcdXMLElementNameProvider
that contains a list of default XML element names for
GML objects. It also offers support for ILcdFeatured classes: it shall create new XML names for
ILcdFeatured
properties, and dynamically update the according schemas.
Element names are chosen using the following criteria:
- If the object implements the
ILcdXMLElement
interface, and theILcdXMLElement
's name is in the given substutition group (or the substituion group isnull
) this name is returned. - If it is a root element (the object stack's size is 1), the
gml:FeatureCollection
element is returned. - If the substitution group is
null
or the substituion group isgml:_Feature
, and the object or its parent isILcdFeatured
, a name is generated, based on the correspondingILcdFeaturedDescriptor
. - If the substitution group is
gml:_Feature
, and the object is notILcdFeatured
, a default name is returned. - Otherwise, the substitution group is returned.
-
Constructor Summary
ConstructorDescriptionTLcdGML2ElementNameProvider
(ILcdXMLEditableSchemaProvider aSchemaProvider) Deprecated.Creates a newTLcdGML3ElementNameProvider
, using the given schema provider. -
Method Summary
Modifier and TypeMethodDescriptioncreateElementName
(ILcdFeaturedDescriptor aFeaturedDescriptor) Deprecated.Returns a suitable XML element name for objects, described by the givenILcdFeaturedDescriptor
.createFeatureNames
(ILcdFeaturedDescriptor aDescriptor) Deprecated.Returns an array of XML names for the features in theILcdFeaturedDescriptor
that is provided.getElementNameForObject
(ILcdXMLNameStack aParentElementNameStack, ILcdXMLObjectStack aParentObjectStack, TLcdXMLName aSubstitutionGroup, Object aObject, TLcdXMLName aTypeName) Deprecated.Returns theTLcdXMLName
that best matches the object, specified by the given name/object stack, substitution group and object.getSchemaType
(Class aClass) Deprecated.Returns the name of the global XML Schema type onto which the specified Java class should be mapped.Deprecated.Returns the target namespace of the custom schema, in which dynamically created XML schema types and elements are stored.void
registerElementName
(Class aJavaClass, TLcdXMLName aElementName) Deprecated.Registers the given XML name for the given Java class.void
setTargetNamespace
(String aNamespace) Deprecated.Sets the target namespace of the custom schema, in which dynamically created XML schema types and elements should be stored.
-
Constructor Details
-
TLcdGML2ElementNameProvider
Deprecated.Creates a newTLcdGML3ElementNameProvider
, using the given schema provider.- Parameters:
aSchemaProvider
- the schema provider from which to adapt the schemas if new XML element names are generated for ILcdFeatured objects.
-
-
Method Details
-
getElementNameForObject
public TLcdXMLName getElementNameForObject(ILcdXMLNameStack aParentElementNameStack, ILcdXMLObjectStack aParentObjectStack, TLcdXMLName aSubstitutionGroup, Object aObject, TLcdXMLName aTypeName) Deprecated.Description copied from interface:ILcdXMLElementNameProvider
Returns theTLcdXMLName
that best matches the object, specified by the given name/object stack, substitution group and object. Note that in some cases, more than one name can be returned. E.g., the object for which to return a name can implement multiple interfaces, each having a corresponding XML element name. It is up to the implementation to decide which name is most suited for the current situation, taking into account the name and object stack, the available element names and the XML type and substitution group that are provided.- Parameters:
aParentElementNameStack
- the XML name stack, containing all XML names from the root element up to the parent element nameaParentObjectStack
- the XML object stack, containing all XML objects from the root element up to the parent elementaSubstitutionGroup
- the substitution group the returned element should belong to, if there is one (null
otherwise).aObject
- the element for which to return a name.aTypeName
- the name of the global type from which the type of the returned element name should inherit, ornull
if the element has an anonymous type.- Returns:
- the element name that best matches the specified element.
-
getSchemaType
Deprecated.Returns the name of the global XML Schema type onto which the specified Java class should be mapped.- Parameters:
aClass
- the Java class for which to return an XML Schema type.- Returns:
- the name of the XML Schema type onto which the specified Java class should be mapped.
-
registerElementName
Deprecated.Registers the given XML name for the given Java class.- Parameters:
aJavaClass
-aElementName
-
-
setTargetNamespace
Deprecated.Sets the target namespace of the custom schema, in which dynamically created XML schema types and elements should be stored.- Parameters:
aNamespace
-
-
getTargetNamespace
Deprecated.Returns the target namespace of the custom schema, in which dynamically created XML schema types and elements are stored.- Returns:
- the target namespace of the custom schema.
- See Also:
-
createElementName
Deprecated.Returns a suitable XML element name for objects, described by the givenILcdFeaturedDescriptor
. The name should have as namespace the namespace of this element name provider. By default, returns an XML name consisting of the target namespace that was set on this element name provider, and the following local name:- If the
ILcdFeaturedDescriptor
implementsILcdModelDescriptor
, the display name of the model. - Else, a new name will be created, consisting of the 'Feature' prefix, and a numbered suffix
that is unique for the given
ILcdFeaturedDescriptor
.
- Parameters:
aFeaturedDescriptor
- theILcdFeaturedDescriptor
for which to return an XML element name.- Returns:
- an XML element name for the given
ILcdFeaturedDescriptor
.
- If the
-
createFeatureNames
Deprecated.Returns an array of XML names for the features in theILcdFeaturedDescriptor
that is provided. All names should have as namespace the target namespace of this element name provider. By default, the feature names are used.- Parameters:
aDescriptor
- theILcdFeaturedDescriptor
for which to return XML feature names.- Returns:
- a list of XML names, matching the features of the
ILcdFeaturedDescriptor
.
-
com.luciad.format.gml3.*
packages are replaced by new decoders and encoders in the packagescom.luciad.format.gml2.xml
,com.luciad.format.gml31.xml
andcom.luciad.format.gml32.xml
.