FDO .NET API Reference Feature Data Objects
Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

OSGeo::FDO::Schema::FeatureSchemaCollection Class Reference

Inherits OSGeo::FDO::Runtime::Disposable.

Inheritance diagram for OSGeo::FDO::Schema::FeatureSchemaCollection:

[legend]
List of all members.

Detailed Description

The FeatureSchemaCollection class represents a collection of FeatureSchema objects.


Public Member Functions

System::Int32 Add (FeatureSchema *value)
 Adds a FeatureSchema object into the collection.
System::Void Clear ()
 Removes all elements from the collection.
System::Boolean Contains (String *name)
 Determines whether the collection contains a specific FeatureSchema object.
System::Boolean Contains (FeatureSchema *value)
 Determines whether the collection contains a specific FeatureSchema object.
System::Void CopyTo (FeatureSchema *array[], System::Int32 startAt)
 Copies the elements of the collection to an array.
 FeatureSchemaCollection (System::IntPtr unmanaged, System::Boolean autoDelete)
 Constructs a FeatureSchemaCollection object based on an unmanaged instance of the object.
 FeatureSchemaCollection (OSGeo::FDO::Schema::SchemaElement *parent)
 Constructs a FeatureSchemaCollection object
OSGeo::FDO::IDisposableCollectionFindClass (System::String *className)
 Takes a qualified or unqualified class name and return a collection of class definitions that match the class name. For qualified name, the collection contains at most one class definition.
__property System::Int32 get_Count (System::Void)
 Gets the count of items in collection.
__property FeatureSchemaget_Item (System::Int32 index)
 Gets an item in the collection.
__property FeatureSchemaget_RealTypeItem (System::String *index)
 Gets the item in the collection by name.
__property FeatureSchemaget_RealTypeItem (System::Int32 index)
 Gets the item in the collection at the specified index.
__property OSGeo::FDO::Commands::Schema::PhysicalSchemaMappingCollectionget_XmlSchemaMappings ()
 Gets a Schema Mapping Collection that describes the mappings between the elements in the GML Schema that were read and the FDO Feature Schema Elements that were created. This function returns the Schema Mapping Collection generated by the last call to ReadXml(). The collection contains one XmlSchemaMapping per schema that was read.
OSGeo::FDO::Xml::XmlFlagsGetDeserializationFlags ()
 Gets the XML Flags that were passed to the ReadXml() function that is currently being executed. This function would typically be called by the XmlSaxHandler callbacks.
__sealed System::Collections::IEnumerator * GetEnumerator (System::Void)
 Gets an enumerator that can iterate through a collection.
OSGeo::FDO::Common::Xml::XmlReaderGetFromExternalStylesheet ()
 Gets the stylesheet for converting a Feature Schema collection from external to internal XML format. The internal format is very similar to the Feature Schema class hierarchy. The external format is OGC GML.
OSGeo::FDO::Common::Xml::XmlReaderGetFromInternalStylesheet ()
 Gets the stylesheet for converting a Feature Schema collection from internal to external XML format. The internal format is very similar to the Feature Schema class hierarchy. The external format is OGC GML.
OSGeo::FDO::Common::Xml::XmlSaxContextGetSaxContext ()
 Gets the stylesheet for converting the XML document from external to internal format. When classes derived from XmlDeserializable define an internal format, they must override this function to return a stylesheet that does the conversion. Gets the SAX context to pass to the XmlSaxHandler callbacks. Classes derived from XmlDeserializable can override this function to specify a SAX context with class-specific information.
OSGeo::FDO::Common::Xml::XmlReaderGetXmlReader ()
 Gets the current XML Reader. This function would typically be called by the XmlSaxHandler callbacks when ReadXml() is being invoked. When ReadXml() reads from a file, stream, or text reader, a wrapping XML reader is automatically created.
System::Int32 IndexOf (String *name)
 Determines the index of a specific FeatureSchema object.
System::Int32 IndexOf (FeatureSchema *value)
 Determines the index of a specific FeatureSchema object.
System::Void Insert (System::Int32 index, FeatureSchema *value)
 Inserts a FeatureSchema object into the collection at the specified position.
System::Void ReadXml (OSGeo::FDO::Common::Io::IoStream *stream, OSGeo::FDO::Xml::XmlFlags *flags)
 Reads an XML document from a stream.
System::Void ReadXml (OSGeo::FDO::Common::Io::IoStream *stream)
 Reads an XML document from a stream.
System::Void ReadXml (OSGeo::FDO::Common::Io::IoTextReader *textReader, OSGeo::FDO::Xml::XmlFlags *flags)
 Reads an XML document from a text reader.
System::Void ReadXml (OSGeo::FDO::Common::Io::IoTextReader *textReader)
 Reads an XML document from a text reader.
System::Void ReadXml (OSGeo::FDO::Common::Xml::XmlReader *xmlReader, OSGeo::FDO::Xml::XmlFlags *flags)
 Reads an XML document from an XML reader.
System::Void ReadXml (OSGeo::FDO::Common::Xml::XmlReader *xmlReader)
 Reads an XML document from an XML reader.
System::Void ReadXml (System::String *fileName, OSGeo::FDO::Xml::XmlFlags *flags)
 Reads from an XML document in a file.
System::Void ReadXml (System::String *fileName)
 Reads from an XML document in a file.
System::Void Remove (FeatureSchema *value)
 Removes the first occurrence of a specific FeatureSchema object.
System::Void RemoveAt (System::Int32 index)
 Removes the index-th FeatureSchema from this collection.
__property System::Void set_Item (System::Int32 index, FeatureSchema *value)
 Sets the value of the item at the specified index.
__property System::Void set_RealTypeItem (System::Int32 index, FeatureSchema *value)
 Sets the value of the item at the specified index.
System::Void WriteXml (OSGeo::FDO::Common::Io::IoStream *stream, OSGeo::FDO::Xml::XmlFlags *flags)
 Writes to a stream. A complete XML document, containing this object, is written.
System::Void WriteXml (OSGeo::FDO::Common::Io::IoStream *stream)
 Writes to a stream. A complete XML document, containing this object, is written.
System::Void WriteXml (OSGeo::FDO::Common::Io::IoTextWriter *textWriter, OSGeo::FDO::Xml::XmlFlags *flags)
 Writes to a text writer. A complete XML document, containing this object, is written.
System::Void WriteXml (OSGeo::FDO::Common::Io::IoTextWriter *textWriter)
 Writes to a text writer. A complete XML document, containing this object, is written.
System::Void WriteXml (OSGeo::FDO::Common::Xml::XmlWriter *xmlWriter, OSGeo::FDO::Xml::XmlFlags *flags)
 Writes to an XML writer. This object is appended to the XML document being written. Unlike the other WriteXml() functions it is not necessarily the only object in its document.
System::Void WriteXml (OSGeo::FDO::Common::Xml::XmlWriter *xmlWriter)
 Writes to an XML writer. This object is appended to the XML document being written. Unlike the other WriteXml() functions it is not necessarily the only object in its document.
System::Void WriteXml (String *fileName, OSGeo::FDO::Xml::XmlFlags *flags)
 Writes this object to a file. A complete XML document, containing this object, is written.
System::Void WriteXml (String *fileName)
 Writes this object to a file. A complete XML document, containing this object, is written.
System::Void XmlCharacters (OSGeo::FDO::Common::Xml::XmlSaxContext *context, System::String *characters)
 Default Sax callback that is called when the XmlReader reads a chunk of simple content for the current element. Does nothing by default. This function may be called multiple times for the same element, if the the content is long. Applications must not make any assumptions about the chunk size or number of chunks for each element.
System::Void XmlEndDocument (OSGeo::FDO::Common::Xml::XmlSaxContext *context)
 Default Sax callback that is called when the XmlReader finishes reading an XML document. Does nothing.
System::Boolean XmlEndElement (OSGeo::FDO::Common::Xml::XmlSaxContext *context, System::String *resourceLocation, System::String *name, System::String *qualifiedName)
 Default Sax callback that is called when the XmlReader reads the end tag for an XML element in the document. Does nothing.
OSGeo::FDO::Common::Xml::IXmlSaxHandlerXmlStartDocument (OSGeo::FDO::Common::Xml::XmlSaxContext *context)
 Default Sax callback that is called when the XmlReader starts reading an XML document. Does nothing.
OSGeo::FDO::Common::Xml::IXmlSaxHandlerXmlStartElement (OSGeo::FDO::Common::Xml::XmlSaxContext *context, String *resourceLocation, String *name, String *qualifiedName, OSGeo::FDO::Common::Xml::XmlAttributeCollection *attributes)
 Default Sax callback that is called when the XmlReader reads the start tag for an XML element in the document. Does nothing.

Protected Member Functions

System::Void ReleaseUnmanagedObject ()

Constructor & Destructor Documentation

OSGeo::FDO::Schema::FeatureSchemaCollection::FeatureSchemaCollection OSGeo::FDO::Schema::SchemaElement parent  ) 
 

Constructs a FeatureSchemaCollection object

Parameters:
parent Input A Pointer to the parent schema object of the collection

OSGeo::FDO::Schema::FeatureSchemaCollection::FeatureSchemaCollection System::IntPtr  unmanaged,
System::Boolean  autoDelete
[inline]
 

Constructs a FeatureSchemaCollection object based on an unmanaged instance of the object.

Parameters:
unmanaged Input A Pointer to the unmanaged object.
autoDelete Input Indicates if the constructed object should be automatically deleted once it no longer referenced.

Member Function Documentation

System::Int32 OSGeo::FDO::Schema::FeatureSchemaCollection::Add FeatureSchema value  ) 
 

Adds a FeatureSchema object into the collection.

Parameters:
value Input the FeatureSchema object to add.
Returns:
Returns the position into which the new element was inserted.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::Clear  ) 
 

Removes all elements from the collection.

System::Boolean OSGeo::FDO::Schema::FeatureSchemaCollection::Contains String *  name  ) 
 

Determines whether the collection contains a specific FeatureSchema object.

Parameters:
name Input The name of the FeatureSchema object to search in the collection.
Returns:
Returns true if the value is found in the collection; otherwise, false.

System::Boolean OSGeo::FDO::Schema::FeatureSchemaCollection::Contains FeatureSchema value  ) 
 

Determines whether the collection contains a specific FeatureSchema object.

Parameters:
value Input The FeatureSchema object to search in the collection.
Returns:
Returns true if the value is found in the collection; otherwise, false.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::CopyTo FeatureSchema array[],
System::Int32  startAt
 

Copies the elements of the collection to an array.

Parameters:
array Output the one-dimensional Array that is the destination of the elements copied from this collection.
startAt Input an integer that represents the index in array at which copying begins.

OSGeo ::FDO ::IDisposableCollection* OSGeo::FDO::Schema::FeatureSchemaCollection::FindClass System::String *  className  ) 
 

Takes a qualified or unqualified class name and return a collection of class definitions that match the class name. For qualified name, the collection contains at most one class definition.

Parameters:
className The class name
Returns:
Returns a collection of classes

__property System::Int32 OSGeo::FDO::Schema::FeatureSchemaCollection::get_Count System::Void   ) 
 

Gets the count of items in collection.

Returns:
Returns the number of items in the collection.

__property FeatureSchema* OSGeo::FDO::Schema::FeatureSchemaCollection::get_Item System::Int32  index  ) 
 

Gets an item in the collection.

Parameters:
index Input index of the item to retrieve.
Returns:
Returns the item at the specified index

__property FeatureSchema* OSGeo::FDO::Schema::FeatureSchemaCollection::get_RealTypeItem System::String *  index  ) 
 

Gets the item in the collection by name.

Parameters:
index The name of the item in the collection.
Returns:
Returns an instance of a the collected item.

__property FeatureSchema* OSGeo::FDO::Schema::FeatureSchemaCollection::get_RealTypeItem System::Int32  index  ) 
 

Gets the item in the collection at the specified index.

Parameters:
index The index of the item in the collection. The index is 0 based.
Returns:
Returns an instance of a the collected item. Throws an instance of Exception if the index is out of range or an error occurs.

__property OSGeo ::FDO ::Commands ::Schema ::PhysicalSchemaMappingCollection* OSGeo::FDO::Schema::FeatureSchemaCollection::get_XmlSchemaMappings  ) 
 

Gets a Schema Mapping Collection that describes the mappings between the elements in the GML Schema that were read and the FDO Feature Schema Elements that were created. This function returns the Schema Mapping Collection generated by the last call to ReadXml(). The collection contains one XmlSchemaMapping per schema that was read.

Returns:
Returns PhysicalSchemaMappingCollection*. Returns NULL if ReadXml() has not been called on this object.

OSGeo ::FDO ::Xml ::XmlFlags* OSGeo::FDO::Schema::FeatureSchemaCollection::GetDeserializationFlags  ) 
 

Gets the XML Flags that were passed to the ReadXml() function that is currently being executed. This function would typically be called by the XmlSaxHandler callbacks.

Returns:
Returns the XML Flags

__sealed System::Collections::IEnumerator* OSGeo::FDO::Schema::FeatureSchemaCollection::GetEnumerator System::Void   ) 
 

Gets an enumerator that can iterate through a collection.

Returns:
Returns an enumerator on the dictionary.

OSGeo ::FDO ::Common ::Xml ::XmlReader* OSGeo::FDO::Schema::FeatureSchemaCollection::GetFromExternalStylesheet  ) 
 

Gets the stylesheet for converting a Feature Schema collection from external to internal XML format. The internal format is very similar to the Feature Schema class hierarchy. The external format is OGC GML.

Returns:
Returns the stylesheet

OSGeo ::FDO ::Common ::Xml ::XmlReader* OSGeo::FDO::Schema::FeatureSchemaCollection::GetFromInternalStylesheet  ) 
 

Gets the stylesheet for converting a Feature Schema collection from internal to external XML format. The internal format is very similar to the Feature Schema class hierarchy. The external format is OGC GML.

Returns:
Returns the stylesheet

OSGeo ::FDO ::Common ::Xml ::XmlSaxContext* OSGeo::FDO::Schema::FeatureSchemaCollection::GetSaxContext  ) 
 

Gets the stylesheet for converting the XML document from external to internal format. When classes derived from XmlDeserializable define an internal format, they must override this function to return a stylesheet that does the conversion. Gets the SAX context to pass to the XmlSaxHandler callbacks. Classes derived from XmlDeserializable can override this function to specify a SAX context with class-specific information.

Returns:
Returns NULL by default, the default NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext is used. The default provides basic error handling functionality.

OSGeo ::FDO ::Common ::Xml ::XmlReader* OSGeo::FDO::Schema::FeatureSchemaCollection::GetXmlReader  ) 
 

Gets the current XML Reader. This function would typically be called by the XmlSaxHandler callbacks when ReadXml() is being invoked. When ReadXml() reads from a file, stream, or text reader, a wrapping XML reader is automatically created.

Returns:
Returns the XML reader

System::Int32 OSGeo::FDO::Schema::FeatureSchemaCollection::IndexOf String *  name  ) 
 

Determines the index of a specific FeatureSchema object.

Parameters:
name Input the name of the FeatureSchema object to locate in the collection.
Returns:
The index of value if found in the collection; otherwise, -1.

System::Int32 OSGeo::FDO::Schema::FeatureSchemaCollection::IndexOf FeatureSchema value  ) 
 

Determines the index of a specific FeatureSchema object.

Parameters:
value Input the FeatureSchema object to locate in the collection.
Returns:
The index of value if found in the collection; otherwise, -1.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::Insert System::Int32  index,
FeatureSchema value
 

Inserts a FeatureSchema object into the collection at the specified position.

Parameters:
index Input the zero-based index at which value should be inserted.
value Input the FeatureSchema object to insert.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml OSGeo::FDO::Common::Io::IoStream stream,
OSGeo::FDO::Xml::XmlFlags flags
 

Reads an XML document from a stream.

Parameters:
stream Input the stream. Must be positioned at the start of an XML document.
flags Input controls the reading of the elements from the document. If NULL then the default flags are used (see NAMESPACE_OSGEO_FDO_XML::XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml OSGeo::FDO::Common::Io::IoStream stream  ) 
 

Reads an XML document from a stream.

Parameters:
stream Input the stream. Must be positioned at the start of an XML document.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml OSGeo::FDO::Common::Io::IoTextReader textReader,
OSGeo::FDO::Xml::XmlFlags flags
 

Reads an XML document from a text reader.

Parameters:
textReader Input the text reader. Must be positioned at the start of an XML document.
flags Input controls the reading of the elements from the document. If NULL then the default flags are used (see NAMESPACE_OSGEO_FDO_XML::XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml OSGeo::FDO::Common::Io::IoTextReader textReader  ) 
 

Reads an XML document from a text reader.

Parameters:
textReader Input the text reader. Must be positioned at the start of an XML document.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml OSGeo::FDO::Common::Xml::XmlReader xmlReader,
OSGeo::FDO::Xml::XmlFlags flags
 

Reads an XML document from an XML reader.

Parameters:
xmlReader Input the XML reader.
flags Input controls the reading of the elements from the document. If NULL then the default flags are used (see NAMESPACE_OSGEO_FDO_XML::XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml OSGeo::FDO::Common::Xml::XmlReader xmlReader  ) 
 

Reads an XML document from an XML reader.

Parameters:
xmlReader Input the XML reader.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml System::String *  fileName,
OSGeo::FDO::Xml::XmlFlags flags
 

Reads from an XML document in a file.

Parameters:
fileName Input the file name. Must consist of an XML document.
flags Input controls the reading of the elements from the document. If NULL then the default flags are used (see NAMESPACE_OSGEO_FDO_XML::XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReadXml System::String *  fileName  ) 
 

Reads from an XML document in a file.

Parameters:
fileName Input the file name. Must consist of an XML document.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::ReleaseUnmanagedObject  )  [protected, virtual]
 

Reimplemented from OSGeo::FDO::Runtime::Disposable.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::Remove FeatureSchema value  ) 
 

Removes the first occurrence of a specific FeatureSchema object.

Parameters:
value Input the FeatureSchema object to remove from the collection.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::RemoveAt System::Int32  index  ) 
 

Removes the index-th FeatureSchema from this collection.

Parameters:
index Input index of the element to remove.

__property System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::set_Item System::Int32  index,
FeatureSchema value
 

Sets the value of the item at the specified index.

Parameters:
index Input index of the item to set.
value Input the value of the item

__property System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::set_RealTypeItem System::Int32  index,
FeatureSchema value
 

Sets the value of the item at the specified index.

Parameters:
index Input index of the item to set.
value Input the value of the item

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml OSGeo::FDO::Common::Io::IoStream stream,
OSGeo::FDO::Xml::XmlFlags flags
 

Writes to a stream. A complete XML document, containing this object, is written.

Parameters:
stream Input the stream. When this function completes, the stream's current position will be just after this object.
flags Input controls the writing of the elements to the stream. If NULL then the default flags are used (see XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml OSGeo::FDO::Common::Io::IoStream stream  ) 
 

Writes to a stream. A complete XML document, containing this object, is written.

Parameters:
stream Input the stream. When this function completes, the stream's current position will be just after this object.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml OSGeo::FDO::Common::Io::IoTextWriter textWriter,
OSGeo::FDO::Xml::XmlFlags flags
 

Writes to a text writer. A complete XML document, containing this object, is written.

Parameters:
textWriter Input the text writer.When this function completes, the text writer's current position will be just after this object.
flags Input controls the writing of the elements to the writer. If NULL then the default flags are used (see XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml OSGeo::FDO::Common::Io::IoTextWriter textWriter  ) 
 

Writes to a text writer. A complete XML document, containing this object, is written.

Parameters:
textWriter Input the text writer.When this function completes, the text writer's current position will be just after this object.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml OSGeo::FDO::Common::Xml::XmlWriter xmlWriter,
OSGeo::FDO::Xml::XmlFlags flags
 

Writes to an XML writer. This object is appended to the XML document being written. Unlike the other WriteXml() functions it is not necessarily the only object in its document.

Parameters:
xmlWriter Input the XML writer. When this function completes, the XML writer's current position will be just after this object.
flags Input controls the writing of the elements to the writer. If NULL then the default flags are used (see XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml OSGeo::FDO::Common::Xml::XmlWriter xmlWriter  ) 
 

Writes to an XML writer. This object is appended to the XML document being written. Unlike the other WriteXml() functions it is not necessarily the only object in its document.

Parameters:
xmlWriter Input the XML writer. When this function completes, the XML writer's current position will be just after this object.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml String *  fileName,
OSGeo::FDO::Xml::XmlFlags flags
 

Writes this object to a file. A complete XML document, containing this object, is written.

Parameters:
fileName Input the file name.
flags Input controls the writing of the elements to the document. If NULL then the default flags are used (see XmlFlags::Create())

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::WriteXml String *  fileName  ) 
 

Writes this object to a file. A complete XML document, containing this object, is written.

Parameters:
fileName Input the file name.

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::XmlCharacters OSGeo::FDO::Common::Xml::XmlSaxContext context,
System::String *  characters
 

Default Sax callback that is called when the XmlReader reads a chunk of simple content for the current element. Does nothing by default. This function may be called multiple times for the same element, if the the content is long. Applications must not make any assumptions about the chunk size or number of chunks for each element.

Parameters:
context Input caller specified contextual information
characters Input the next chunk of simple content

System::Void OSGeo::FDO::Schema::FeatureSchemaCollection::XmlEndDocument OSGeo::FDO::Common::Xml::XmlSaxContext context  ) 
 

Default Sax callback that is called when the XmlReader finishes reading an XML document. Does nothing.

Parameters:
context Input caller specified contextual information

System::Boolean OSGeo::FDO::Schema::FeatureSchemaCollection::XmlEndElement OSGeo::FDO::Common::Xml::XmlSaxContext context,
System::String *  resourceLocation,
System::String *  name,
System::String *  qualifiedName
 

Default Sax callback that is called when the XmlReader reads the end tag for an XML element in the document. Does nothing.

Parameters:
context Input caller specified contextual information
resourceLocation Input the element's Universal Resource Indicator
name Input the unqualified element name (doesn't include namespace)
qualifiedName Input the qualified element name (includes namespace)
Returns:
Returning true causes the current parse to stop. Returning false cause the parse to continue. Return value is ignored if the current parse is not an incremental parse ( see XmlReader::Parse())

OSGeo ::FDO ::Common ::Xml ::IXmlSaxHandler* OSGeo::FDO::Schema::FeatureSchemaCollection::XmlStartDocument OSGeo::FDO::Common::Xml::XmlSaxContext context  ) 
 

Default Sax callback that is called when the XmlReader starts reading an XML document. Does nothing.

Parameters:
context Input caller specified contextual information
Returns:
Returns the SAX Handler for the document's root element. If NULL then this SAX handler will handle the root element

OSGeo ::FDO ::Common ::Xml ::IXmlSaxHandler* OSGeo::FDO::Schema::FeatureSchemaCollection::XmlStartElement OSGeo::FDO::Common::Xml::XmlSaxContext context,
String *  resourceLocation,
String *  name,
String *  qualifiedName,
OSGeo::FDO::Common::Xml::XmlAttributeCollection attributes
 

Default Sax callback that is called when the XmlReader reads the start tag for an XML element in the document. Does nothing.

Parameters:
context Input caller specified contextual information
resourceLocation Input the element's Universal Resource Indicator
name Input the unqualified element name (doesn't include namespace)
qualifiedName Input the qualified element name (includes namespace)
attributes Input the attributes for the element.
Returns:
Returns the SAX Handler for the element's sub-elements. If NULL then this SAX handler will handle the sub-elements

Comments or suggestions? Send us feedback.