[fdo-commits] r734 - in branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands: . Feature LongTransaction SQL Schema SpatialContext

svn_fdo at osgeo.org svn_fdo at osgeo.org
Wed Feb 7 16:41:25 EST 2007


Author: gregboone
Date: 2007-02-07 16:41:24 -0500 (Wed, 07 Feb 2007)
New Revision: 734

Modified:
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Feature/mgIFeatureReaderImp.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionConflictResolution.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionPrivileges.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReader.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReaderImp.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgIPhysicalElementMapping.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalElementMapping.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalSchemaMappingCollection.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContext.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContextImp.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReader.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReaderImp.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgBatchParameterValueCollection.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgCommandType.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgIdentifierCollection.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgParameterValueCollection.h
   branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgPropertyValueCollection.h
Log:
893057: DOC: FDO Managed API Documentation Updates

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Feature/mgIFeatureReaderImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Feature/mgIFeatureReaderImp.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Feature/mgIFeatureReaderImp.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -73,8 +73,6 @@
     /// 
     /// \param propertyName 
     /// Input the property name.
-    /// \param count 
-    /// Output the number of bytes in the array.
     /// 
     /// \return
     /// Returns a pointer to the byte array in FGF format.

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionConflictResolution.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionConflictResolution.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionConflictResolution.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -23,27 +23,22 @@
 /// \brief
 /// The LongTransactionConflictResolution enumeration defines the list of
 /// available options for resolving conflict.
-/// <param name="LongTransactionConflictResolution_Unresolved">
+///
+/// \param LongTransactionConflictResolution_Unresolved
 /// Indicates that the conflict cannot be resolved.
-/// </param>
-/// <param name="LongTransactionConflictResolution_Child">
+///
+/// \param LongTransactionConflictResolution_Child
 /// Indicates the data is to be kept as defined in the long transaction to be committed,
 /// overwriting the data in the long transaction's parent.
-/// </param>
-/// <param name="LongTransactionConflictResolution_Parent">
+///
+/// \param LongTransactionConflictResolution_Parent
 /// Indicates the data is to be kept as defined in the versions parent, discarding the data
 /// as defined in the long transaction to be committed.
-/// </param>
+///
 public __value enum LongTransactionConflictResolution
 {
 	LongTransactionConflictResolution_Unresolved = FdoLongTransactionConflictResolution_Unresolved,
-
-    /// Keep the data as defined in the long transaction to be committed,
-    /// overwriting the data in the long transaction's parent.
 	LongTransactionConflictResolution_Child = FdoLongTransactionConflictResolution_Child,
-
-    /// Keep the data as defined in the versions parent, discarding the data
-    /// as defined in the long transaction to be committed.
 	LongTransactionConflictResolution_Parent = FdoLongTransactionConflictResolution_Parent
 };
 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionPrivileges.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionPrivileges.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/LongTransaction/mgLongTransactionPrivileges.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -23,67 +23,45 @@
 /// \brief
 /// The LongTransactionPrivileges enumeration defines the long transaction
 /// privilege flags.
-/// <param name="LongTransactionPrivileges_Access">
+///
+/// \param LongTransactionPrivileges_Access
 /// The access privilege is required for a user if the user needs to access
 /// a long transaction.
-/// </param>
-/// <param name="LongTransactionPrivileges_Create">
+///
+/// \param LongTransactionPrivileges_Create
 /// A user must have access and create privileges on the active long
 /// transaction if the user wants to create a new long transaction as a
 /// descendent of the active long transaction.
-/// </param>
-/// <param name="LongTransactionPrivileges_Commit">
+///
+/// \param LongTransactionPrivileges_Commit
 /// A user must have access and commit privileges on a long transaction
 /// in order to commit it. In addition, the user needs access privilege to
 /// the long transaction's parent. The user also needs remove privilege on
 /// the long transaction to be committed if the operation to be executed
 /// is a commit and not a partial commit.
-/// </param>
-/// <param name="LongTransactionPrivileges_Rollback">
+///
+/// \param LongTransactionPrivileges_Rollback
 /// A user must have access and rollback privileges on a long transaction
 /// in order to roll it back. In addition, the user requires access
 /// privilege for each of the descendent versions involved in the operation. The user also requires the remove privilege for each of the versions involved in the operation if a rollback and not a partial rollback operation is executed.
-/// </param>
-/// <param name="LongTransactionPrivileges_Remove">
+///
+/// \param LongTransactionPrivileges_Remove
 /// The long transaction privilege is required if the user should be allowed to remove the
 /// long transaction in the progress of a commit or roll back operation.
-/// </param>
-/// <param name="LongTransactionPrivileges_Freeze">
+///
+/// \param LongTransactionPrivileges_Freeze
 /// The user requires the access and freeze privileges on a long
 /// transaction for which the user wants to gain exclusive access to a
 /// long transaction.
-/// </param>
+///
 [System::FlagsAttribute]
 public __value enum LongTransactionPrivileges
 {
-    /// The access privilege is required for a user if the user needs to access
-    /// a long transaction.
 	LongTransactionPrivileges_Access = FdoLongTransactionPrivileges_Access,
-
-    /// A user must have access and create privileges on the active long
-    /// transaction if the user wants to create a new long transaction as a
-    /// descendent of the active long transaction.
 	LongTransactionPrivileges_Create = FdoLongTransactionPrivileges_Create,
-
-    /// A user must have access and commit privileges on a long transaction
-    /// in order to commit it. In addition, the user needs access privilege to
-    /// the long transaction's parent. The user also needs remove privilege on
-    /// the long transaction to be committed if the operation to be executed
-    /// is a commit and not a partial commit.
 	LongTransactionPrivileges_Commit = FdoLongTransactionPrivileges_Commit,
-
-    /// A user must have access and rollback privileges on a long transaction
-    /// in order to roll it back. In addition, the user requires access
-    /// privilege for each of the descendent versions involved in the operation. The user also requires the remove privilege for each of the versions involved in the operation if a rollback and not a partial rollback operation is executed.
 	LongTransactionPrivileges_Rollback = FdoLongTransactionPrivileges_Rollback,
-
-    /// The privilege is required if the user should be allowed to remove the
-    /// long transaction in the progress of a commit or roll back operation.
 	LongTransactionPrivileges_Remove = FdoLongTransactionPrivileges_Remove,
-
-    /// The user requires the access and freeze privileges on a long
-    /// transaction for which the user wants to gain exclusive access to a
-    /// long transaction.
 	LongTransactionPrivileges_Freeze = FdoLongTransactionPrivileges_Freeze
 };
 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReader.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReader.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReader.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -72,10 +72,10 @@
 
     /// \brief
     /// Gets  property type of the column with the specified name. This is used
-    ///  to indicate if a given column is a geometric property or a data property. If the column is
-    ///  a PropertyType_DataProperty, then GetColumnType can be used to find the data type of the column.
+    /// to indicate if a given column is a geometric property or a data property. If the column is
+    /// a PropertyType_DataProperty, then GetColumnType can be used to find the data type of the column.
     /// 
-    /// \param propertyName 
+    /// \param name 
     /// Input the column name.
     /// 
     /// \return
@@ -205,7 +205,7 @@
     /// Because no conversion is performed, the property must be DataType_BLOB or
     /// DataType_CLOB etc. (a LOB type)
     /// 
-    /// \param propertyName 
+    /// \param name 
     /// Input the property name.
     /// 
     /// \return
@@ -220,7 +220,7 @@
     /// or DataType_CLOB etc. (a LOB type)
     /// Cast the IStreamReader to the appropiate LOB Stream Reader.
     /// 
-    /// \param propertyName 
+    /// \param name 
     /// Input the property name.
     /// 
     /// \return

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReaderImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReaderImp.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SQL/mgISQLDataReaderImp.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -77,10 +77,10 @@
 
     /// \brief
     /// Gets  property type of the column with the specified name. This is used
-    ///  to indicate if a given column is a geometric property or a data property. If the column is
-    ///  a PropertyType_DataProperty, then GetColumnType can be used to find the data type of the column.
+    /// to indicate if a given column is a geometric property or a data property. If the column is
+    /// a PropertyType_DataProperty, then GetColumnType can be used to find the data type of the column.
     /// 
-    /// \param propertyName 
+    /// \param name 
     /// Input the column name.
     /// 
     /// \return
@@ -210,7 +210,7 @@
     /// Because no conversion is performed, the property must be DataType_BLOB or
     /// DataType_CLOB etc. (a LOB type)
     /// 
-    /// \param propertyName 
+    /// \param name 
     /// Input the property name.
     /// 
     /// \return
@@ -225,7 +225,7 @@
     /// or DataType_CLOB etc. (a LOB type)
     /// Cast the IStreamReader to the appropiate LOB Stream Reader.
     /// 
-    /// \param propertyName 
+    /// \param name 
     /// Input the property name.
     /// 
     /// \return

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgIPhysicalElementMapping.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgIPhysicalElementMapping.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgIPhysicalElementMapping.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -57,7 +57,7 @@
     /// been added to a parent object.
     /// 
     /// \return
-    /// Returns PhysicalElementMapping of parent
+    /// Returns the PhysicalElementMapping of the parent
     /// 
 	__property NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::IPhysicalElementMapping* get_Parent();
 
@@ -87,19 +87,20 @@
 	__property System::String* get_Name();
 	
     /// \brief
-    /// Sets the name of this element.
+    /// Gets the fully qualified name of this element.
     /// 
-    /// \param value 
-    /// Input the name of this element.
-    /// 
     /// \return
-    /// Returns nothing
+    /// Returns the qualified name of this element. 
     /// 
 	__property System::String* get_QualifiedName();
 
-    // Indicates that this object allows its name
-    // to change. This function is defined so that this class can 
-    // be a NamedCollection element.
+    /// \brief
+    /// Indicates whether the name of the Element can be changed once
+    /// it has been created.
+    /// 
+    /// \return
+    /// Returns true if the Element name can be changed; otherwise false.
+    /// 
 	__property System::Boolean get_CanSetName();
 
     /// \brief
@@ -132,15 +133,67 @@
     /// 
 	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_XML::XmlWriter* xmlWriter, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
-    /// Various error reporting functions that are not yet part of the supported FDO API.
-    /// All of them return a XmlSkipElementHandler, which can be used to skip
-    /// over the element in error.
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElement 
+    /// Input the XML sub element
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* SubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, System::String* subElement);
 
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElement 
+    /// Input the XML sub element
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* MultiSubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, System::String* subElement);
 
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElements 
+    /// Input the list of the XML sub elements
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* ChoiceSubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, NAMESPACE_OSGEO_COMMON::StringCollection* subElements);
 
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElement 
+    /// Input the XML sub element
+    ///
+    /// \param subElementName 
+    /// Input the XML sub element name
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* DuplicateSubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, System::String* subElement, System::String* subElementName);
 };
 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalElementMapping.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalElementMapping.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalElementMapping.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -61,7 +61,7 @@
     /// been added to a parent object.
     /// 
     /// \return
-    /// Returns PhysicalElementMapping of parent
+    /// Returns the PhysicalElementMapping of the parent
     /// 
 	__property NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::IPhysicalElementMapping* get_Parent();
 
@@ -70,7 +70,7 @@
     /// object has not been added to a feature schema.
     /// 
     /// \return
-    /// Returns PhysicalSchemaMapping this object is a part of
+    /// Returns the PhysicalSchemaMapping this object is a part of
     /// 
 	__property NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping* get_SchemaMapping();
 
@@ -86,24 +86,26 @@
     /// Gets the fully qualified name of this element
     /// 
     /// \return
-    /// default implementation simply returns the element name
+    /// The Default implementation simply returns the element name
     /// 
 	__property System::String* get_Name();
 	
     /// \brief
-    /// Sets the name of this element.
+    /// Gets the fully qualified name of this element.
     /// 
-    /// \param value 
-    /// Input the name of this element.
-    /// 
     /// \return
-    /// Returns nothing
+    /// Returns the qualified name of this element 
     /// 
 	__property System::String* get_QualifiedName();
 
+    /// \brief
     // Indicates that this object allows its name
     // to change. This function is defined so that this class can 
     // be a NamedCollection element.
+    ///
+    /// \return
+    /// Returns true if the name of the object can be changed.
+    /// 
 	__property System::Boolean get_CanSetName();
 
     /// \brief
@@ -136,15 +138,67 @@
     /// 
 	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_XML::XmlWriter* xmlWriter, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
-    /// Various error reporting functions that are not yet part of the supported FDO API.
-    /// All of them return a XmlSkipElementHandler, which can be used to skip
-    /// over the element in error.
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElement 
+    /// Input the XML sub element
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* SubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, System::String* subElement);
 
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElement 
+    /// Input the XML sub element
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* MultiSubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, System::String* subElement);
 
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElements 
+    /// Input the list of the XML sub elements
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* ChoiceSubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, NAMESPACE_OSGEO_COMMON::StringCollection* subElements);
 
+    /// \brief
+    /// Error reporting function that are not yet part of the supported FDO API.
+    /// Return a XmlSkipElementHandler, which can be used to skip over the element in error.
+    ///
+    /// \param context 
+    /// Input context contain information about the current deserialization operation
+    ///
+    /// \param parentElement 
+    /// Input the XML parent element
+    ///
+    /// \param subElement 
+    /// Input the XML sub element
+    ///
+    /// \param subElementName
+    /// Input the XML sub element name
+    ///
 	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* DuplicateSubElementError(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context, System::String* parentElement, System::String* subElement, System::String* subElementName);
 
 /// \cond DOXYGEN-IGNORE

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalSchemaMappingCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalSchemaMappingCollection.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/Schema/mgPhysicalSchemaMappingCollection.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -158,7 +158,7 @@
     /// \return
     /// Returns StringCollection
     /// 
-    ///  
+    ///
 	PhysicalSchemaMappingCollection();
 
     /// \brief
@@ -246,12 +246,12 @@
     /// 
     /// \param array 
     /// Output the one-dimensional Array that is the destination of the elements copied from this collection.
+    ///
     /// \param startAt 
     /// Input an integer that represents the index in array at which copying begins.
     /// 
-	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping* array[],System::Int32 size);
+	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping* array[],System::Int32 startAt);
 
-
     /// \brief
     /// Gets the item in the collection at the specified index. 
     /// 
@@ -310,7 +310,7 @@
     /// \return
     /// Returns the Schema Override set at the specified index
     /// 
-	NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping* GetItem(System::Int32 item);
+	NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping* GetItem(System::Int32 index);
 
     /// \brief
     /// Gets the Schema Override set for the specified 
@@ -337,13 +337,13 @@
     /// provider name.
     /// 
     /// \param connection 
-    /// Input  connection.
+    /// Input the FDO connection.
     /// \param schemaName 
     /// Input Feature Schema name.
     /// 
     /// \return
     /// Returns the Schema Override set for the given Feature Schema and 
-    ///  Provider for the given connection. NULL is return if the set was not 
+    /// Provider for the given connection. NULL is return if the set was not 
     /// found.
     /// 
 	NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping * GetItem(NAMESPACE_OSGEO_FDO_CONNECTIONS::IConnection* connection, System::String* schemaName);
@@ -351,6 +351,7 @@
 	/*
 		IXmlSaxHandler Implemenations
 	*/
+
     /// \brief
     /// Default Sax callback that is called when the XmlReader 
     /// starts reading an XML document. Does nothing.
@@ -362,7 +363,7 @@
     /// Returns the SAX Handler for the document's root element. If NULL then 
     /// this SAX handler will handle the root element
     /// 
-	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* XmlStartDocument(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context);
+	NAMESPACE_OSGEO_COMMON_XML::IXmlSaxHandler* XmlStartDocument(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* saxContext);
 
     /// \brief
     /// Default Sax callback that is called when the XmlReader 
@@ -371,7 +372,7 @@
     /// \param saxContext 
     /// Input caller specified contextual information
     /// 
-	System::Void XmlEndDocument(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* context);
+	System::Void XmlEndDocument(NAMESPACE_OSGEO_COMMON_XML::XmlSaxContext* saxContext);
 
     /// \brief
     /// Default Sax callback that is called when the XmlReader 
@@ -431,58 +432,85 @@
 	/*
 		IXmlDeserializable Implemenations
 	*/
+
     /// \brief
     /// Reads from an XML document in a file.
     /// 
     /// \param fileName 
     /// Input the file name. Must consist of an XML document.
+    /// 
+	System::Void ReadXml(System::String* fileName);
+
+    /// \brief
+    /// Reads from an XML document in a file.
+    /// 
+    /// \param fileName 
+    /// Input the file name. Must consist of an XML document.
     /// \param 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 ReadXml(System::String* fileName);
-
 	System::Void ReadXml(System::String* fileName, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
     /// Reads an XML document from an XML reader.
     /// 
-    /// \param reader 
+    /// \param xmlReader 
     /// Input the XML reader.
+    /// 
+	System::Void ReadXml(NAMESPACE_OSGEO_COMMON_XML::XmlReader* xmlReader);
+
+    /// \brief
+    /// Reads an XML document from an XML reader.
+    /// 
+    /// \param xmlReader 
+    /// Input the XML reader.
     /// \param 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 ReadXml(NAMESPACE_OSGEO_COMMON_XML::XmlReader* xmlReader);
-
 	System::Void ReadXml(NAMESPACE_OSGEO_COMMON_XML::XmlReader* xmlReader, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
     /// Reads an XML document from a text reader.
     /// 
-    /// \param reader 
+    /// \param textReader 
     /// Input the text reader. Must be positioned at the
     /// start of an XML document.
+    /// 
+	System::Void ReadXml(NAMESPACE_OSGEO_COMMON_IO::IoTextReader* textReader);
+
+    /// \brief
+    /// Reads an XML document from a text reader.
+    /// 
+    /// \param textReader 
+    /// Input the text reader. Must be positioned at the
+    /// start of an XML document.
     /// \param 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 ReadXml(NAMESPACE_OSGEO_COMMON_IO::IoTextReader* textReader);
-
 	System::Void ReadXml(NAMESPACE_OSGEO_COMMON_IO::IoTextReader* textReader, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
     /// Reads an XML document from a stream.
     /// 
-    /// \param reader 
+    /// \param stream 
     /// Input the stream. Must be positioned at the
     /// start of an XML document.
+    /// 
+	System::Void ReadXml(NAMESPACE_OSGEO_COMMON_IO::IoStream* stream);
+
+    /// \brief
+    /// Reads an XML document from a stream.
+    /// 
+    /// \param stream 
+    /// Input the stream. Must be positioned at the
+    /// start of an XML document.
     /// \param 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 ReadXml(NAMESPACE_OSGEO_COMMON_IO::IoStream* stream);
-
 	System::Void ReadXml(NAMESPACE_OSGEO_COMMON_IO::IoStream* stream, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
@@ -531,18 +559,26 @@
 	/*
 		IXmlSerializable Implemenations
 	*/
+
     /// \brief
     /// Writes this object to a file. A complete XML document,
     /// containing this object, is written.
     /// 
     /// \param fileName 
     /// Input the file name.
+    /// 
+	System::Void WriteXml(String* fileName);
+
+    /// \brief
+    /// Writes this object to a file. A complete XML document,
+    /// containing this object, is written.
+    /// 
+    /// \param fileName 
+    /// Input the file name.
     /// \param flags 
     /// Input controls the writing of the elements to the document.
     /// If NULL then the default flags are used (see XmlFlags::Create())
     /// 
-	System::Void WriteXml(String* fileName);
-
 	System::Void WriteXml(String* fileName, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
@@ -553,12 +589,21 @@
     /// \param xmlWriter 
     /// Input the XML writer. When this function completes, the
     /// XML writer's current position will be just after this object.
+    /// 
+	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_XML::XmlWriter* xmlWriter);
+
+    /// \brief
+    /// 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.
+    /// 
+    /// \param xmlWriter 
+    /// Input the XML writer. When this function completes, the
+    /// XML writer's current position will be just after this object.
     /// \param flags 
     /// Input controls the writing of the elements to the writer.
     /// If NULL then the default flags are used (see XmlFlags::Create())
     /// 
-	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_XML::XmlWriter* xmlWriter);
-
 	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_XML::XmlWriter* xmlWriter, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
@@ -568,12 +613,20 @@
     /// \param textWriter 
     /// Input the text writer.When this function completes, the
     /// text writer's current position will be just after this object.
+    /// 
+	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_IO::IoTextWriter* textWriter);
+
+    /// \brief
+    /// Writes to a text writer. A complete XML document,
+    /// containing this object, is written.
+    /// 
+    /// \param textWriter 
+    /// Input the text writer.When this function completes, the
+    /// text writer's current position will be just after this object.
     /// \param flags 
     /// Input controls the writing of the elements to the writer.
     /// If NULL then the default flags are used (see XmlFlags::Create())
     /// 
-	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_IO::IoTextWriter* textWriter);
-
 	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_IO::IoTextWriter* textWriter, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief
@@ -583,12 +636,20 @@
     /// \param stream 
     /// Input the stream. When this function completes, the
     /// stream's current position will be just after this object.
+    /// 
+	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_IO::IoStream* stream);
+
+    /// \brief
+    /// Writes to a stream. A complete XML document,
+    /// containing this object, is written.
+    /// 
+    /// \param stream 
+    /// Input the stream. When this function completes, the
+    /// stream's current position will be just after this object.
     /// \param flags 
     /// Input controls the writing of the elements to the stream.
     /// If NULL then the default flags are used (see XmlFlags::Create())
     /// 
-	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_IO::IoStream* stream);
-
 	System::Void WriteXml(NAMESPACE_OSGEO_COMMON_IO::IoStream* stream, NAMESPACE_OSGEO_FDO_XML::XmlFlags* flags);
 
     /// \brief

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContext.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContext.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContext.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -151,7 +151,7 @@
     /// Sets the extent of the context to create as a byte array in FGF format.
     /// If the extent type is dynamic this is optional and any value specified is ignored.
     /// 
-    /// \param value 
+    /// \param buffer 
     /// Input the extent of the spatial context
     /// 
     /// \return

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContextImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContextImp.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgICreateSpatialContextImp.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -156,7 +156,7 @@
     /// Sets the extent of the context to create as a byte array in FGF format.
     /// If the extent type is dynamic this is optional and any value specified is ignored.
     /// 
-    /// \param value 
+    /// \param buffer 
     /// Input the extent of the spatial context
     /// 
     /// \return

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReader.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReader.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReader.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -79,9 +79,6 @@
     /// Gets the extent of the spatial context currently being read as a byte
     /// array in FGF format.
     /// 
-    /// \param length 
-    /// Output the length of the returned byte array.
-    /// 
     /// \return
     /// Returns the extent as a byte array in FGF format.
     /// 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReaderImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReaderImp.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/SpatialContext/mgISpatialContextReaderImp.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -85,9 +85,6 @@
     /// Gets the extent of the spatial context currently being read as a byte
     /// array in FGF format.
     /// 
-    /// \param length 
-    /// Output the length of the returned byte array.
-    /// 
     /// \return
     /// Returns the extent as a byte array in FGF format.
     /// 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgBatchParameterValueCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgBatchParameterValueCollection.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgBatchParameterValueCollection.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -229,10 +229,11 @@
     /// 
     /// \param array 
     /// Output the one-dimensional Array that is the destination of the elements copied from this collection.
-    /// \param startAt 
+    ///
+    /// \param index 
     /// Input an integer that represents the index in array at which copying begins.
     /// 
-	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS::ParameterValueCollection* array[],System::Int32 size);
+	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS::ParameterValueCollection* array[],System::Int32 index);
 
     /// \brief
     /// Gets the item in the collection at the specified index. 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgCommandType.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgCommandType.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgCommandType.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -21,322 +21,219 @@
 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS
 
 /// \brief
-/// The CommandType enumeration defines the list of abstract commands a feature
-/// provider can support.
-/// <param name="CommandType_Select">
+/// The CommandType enumeration defines the list of abstract commands a feature provider can support.
+///
+/// \param CommandType_Select
 /// Represents the Select command
-/// </param>
-/// <param name="CommandType_Insert">
+///
+/// \param CommandType_Insert
 /// Represents the Insert command
-/// </param>
-/// <param name="CommandType_Delete">
+///
+/// \param CommandType_Delete
 /// Represents the Delete command
-/// </param>
-/// <param name="CommandType_Update">
+///
+/// \param CommandType_Update
 /// Represents the Update command
-/// </param>
-/// <param name="CommandType_DescribeSchema">
+///
+/// \param CommandType_DescribeSchema
 /// Represents the DescribeSchema command
-/// </param>
-/// <param name="CommandType_DescribeSchemaMapping">
+///
+/// \param CommandType_DescribeSchemaMapping
 /// Represents the DescribeSchemaMapping command
-/// </param>
-/// <param name="CommandType_ApplySchema">
+///
+/// \param CommandType_ApplySchema
 /// Represents the ApplySchema command.
-/// </param>
-/// <param name="CommandType_DestroySchema">
+///
+/// \param CommandType_DestroySchema
 /// Represents the DestroySchema command.
-/// </param>
-/// <param name="CommandType_ActivateSpatialContext">
+///
+/// \param CommandType_ActivateSpatialContext
 /// Represents the ActivateSpatialContext command.
-/// </param>
-/// <param name="CommandType_CreateSpatialContext">
+///
+/// \param CommandType_CreateSpatialContext
 /// Represents the CreateSpatialContext command.
-/// </param>
-/// <param name="CommandType_DestroySpatialContext">
+///
+/// \param CommandType_DestroySpatialContext
 /// Represents the DestroySpatialContext command.
-/// </param>
-/// <param name="CommandType_GetSpatialContexts">
+///
+/// \param CommandType_GetSpatialContexts
 /// Represents the GetSpatialContexts command.
-/// </param>
-/// <param name="CommandType_CreateMeasureUnit">
+///
+/// \param CommandType_CreateMeasureUnit
 /// Represents the CreateMeasureUnit command.
-/// </param>
-/// <param name="CommandType_DestroyMeasureUnit">
+///
+/// \param CommandType_DestroyMeasureUnit
 /// Represents the DestroyMeasureUnit command.
-/// </param>
-/// <param name="CommandType_GetMeasureUnits">
+///
+/// \param CommandType_GetMeasureUnits
 /// Represents the GetMeasureUnits command.
-/// </param>
-/// <param name="CommandType_SQLCommand">
+///
+/// \param CommandType_SQLCommand
 /// Represents the SQLCommand command.
-/// </param>
-/// <param name="CommandType_AcquireLock">
+///
+/// \param CommandType_AcquireLock
 /// Represents the AcquireLock command.
-/// </param>
-/// <param name="CommandType_GetLockInfo">
+///
+/// \param CommandType_GetLockInfo
 /// Represents the GetLockInfo command.
-/// </param>
-/// <param name="CommandType_GetLockedObjects">
+///
+/// \param CommandType_GetLockedObjects
 /// Represents the GetLockedObjects command.
-/// </param>
-/// <param name="CommandType_GetLockOwners">
+///
+/// \param CommandType_GetLockOwners
 /// Represents the GetLockOwners command.
-/// </param>
-/// <param name="CommandType_ReleaseLock">
+///
+/// \param CommandType_ReleaseLock
 /// Represents the ReleaseLock command.
-/// </param>
-/// <param name="CommandType_ActivateLongTransaction">
+///
+/// \param CommandType_ActivateLongTransaction
 /// Represents the ActivateLongTransaction command.
-/// </param>
-/// <param name="CommandType_CommitLongTransaction">
+///
+/// \param CommandType_CommitLongTransaction
 /// Represents the CommitLongTransaction command.
-/// </param>
-/// <param name="CommandType_CreateLongTransaction">
+///
+/// \param CommandType_CreateLongTransaction
 /// Represents the CreateLongTransaction command.
-/// </param>
-/// <param name="CommandType_GetLongTransactions">
+///
+/// \param CommandType_GetLongTransactions
 /// Represents the GetLongTransactions command.
-/// </param>
-/// <param name="CommandType_FreezeLongTransaction">
+///
+/// \param CommandType_FreezeLongTransaction
 /// Represents the FreezeLongTransaction command.
-/// </param>
-/// <param name="CommandType_RollbackLongTransaction">
+///
+/// \param CommandType_RollbackLongTransaction
 /// Represents the RollbackLongTransaction command.
-/// </param>
-/// <param name="CommandType_ActivateLongTransactionCheckpoint">
+///
+/// \param CommandType_ActivateLongTransactionCheckpoint
 /// Represents the ActivateLongTransactionCheckpoint command.
-/// </param>
-/// <param name="CommandType_CreateLongTransactionCheckpoint">
+///
+/// \param CommandType_CreateLongTransactionCheckpoint
 /// Represents the CreateLongTransactionCheckpoint command.
-/// </param>
-/// <param name="CommandType_GetLongTransactionCheckpoints">
+///
+/// \param CommandType_GetLongTransactionCheckpoints
 /// Represents the GetLongTransactionCheckpoints command.
-/// </param>
-/// <param name="CommandType_RollbackLongTransactionCheckpoint">
+///
+/// \param CommandType_RollbackLongTransactionCheckpoint
 /// Represents the RollbackLongTransactionCheckpoint command.
-/// </param>
-/// <param name="CommandType_ChangeLongTransactionPrivileges">
+///
+/// \param CommandType_ChangeLongTransactionPrivileges
 /// Represents the ChangeLongTransactionPrivileges command.
-/// </param>
-/// <param name="CommandType_GetLongTransactionPrivileges">
+///
+/// \param CommandType_GetLongTransactionPrivileges
 /// Represents the GetLongTransactionPrivileges command.
-/// </param>
-/// <param name="CommandType_ChangeLongTransactionSet">
+///
+/// \param CommandType_ChangeLongTransactionSet
 /// Represents the ChangeLongTransactionSet command.
-/// </param>
-/// <param name="CommandType_GetLongTransactionsInSet">
+///
+/// \param CommandType_GetLongTransactionsInSet
 /// Represents the GetLongTransactionsInSet command.
-/// </param>
-/// <param name="CommandType_FirstProviderCommand">
+///
+/// \param CommandType_FirstProviderCommand
 /// Represents the index of the first provider specific command.
-/// </param>
-/// <param name="CommandType_SelectAggregates">
+///
+/// \param CommandType_SelectAggregates
 /// Represents the SelectAggregate command.
-/// </param>
-/// <param name="(See Description note)">
-/// \note
-/// The following parameters are not supported in this release. 
-/// They are provided here for informational use only. OSGeo 
-/// reserves the right to change the software related to the content herein.
-/// </param>
-/// <param name="CommandType_NetworkShortestPath">
-/// Represents the NetworkShortestPath command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_NetworkAllPaths">
-/// Represents the NetworkAllPaths command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_NetworkReachableNodes">
-/// Represents the NetworkReachableNodes command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_NetworkReachingNodes">
-/// Represents the NetworkReachingNodes command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_NetworkNearestNeighbors">
-/// Represents the NetworkNearestNeighbors command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_NetworkWithinCost">
-/// Represents the NetworkWithinCost command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_NetworkTSP">
-/// Represents the NetworkTSP command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_ActivateTopologyArea">
-/// Represents the ActivateTopologyArea command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_DeactivateTopologyArea">
-/// Represents the DeactivateTopologyArea command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_ActivateTopologyInCommandResult">
-/// Represents the ActivateTopologyInCommandResult command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_DeactivateTopologyInCommandResults">
-/// Represents the DeactivateTopologyInCommandResults command (see <b>Note</b>).
-/// </param>
-/// <param name="CommandType_CreateDataStore">
+///
+/// \param CommandType_NetworkShortestPath
+/// Represents the NetworkShortestPath command (see <b>remarks</b>).
+///
+/// \param CommandType_NetworkAllPaths
+/// Represents the NetworkAllPaths command (see <b>remarks</b>).
+///
+/// \param CommandType_NetworkReachableNodes
+/// Represents the NetworkReachableNodes command (see <b>remarks</b>).
+///
+/// \param CommandType_NetworkReachingNodes
+/// Represents the NetworkReachingNodes command (see <b>remarks</b>).
+///
+/// \param CommandType_NetworkNearestNeighbors
+/// Represents the NetworkNearestNeighbors command (see <b>remarks</b>).
+///
+/// \param CommandType_NetworkWithinCost
+/// Represents the NetworkWithinCost command (see <b>remarks</b>).
+///
+/// \param CommandType_NetworkTSP
+/// Represents the NetworkTSP command (see <b>remarks</b>).
+///
+/// \param CommandType_ActivateTopologyArea
+/// Represents the ActivateTopologyArea command (see <b>remarks</b>).
+///
+/// \param CommandType_DeactivateTopologyArea
+/// Represents the DeactivateTopologyArea command (see <b>remarks</b>).
+///
+/// \param CommandType_ActivateTopologyInCommandResult
+/// Represents the ActivateTopologyInCommandResult command (see <b>remarks</b>).
+///
+/// \param CommandType_DeactivateTopologyInCommandResults
+/// Represents the DeactivateTopologyInCommandResults command (see <b>remarks</b>).
+///
+/// \param CommandType_CreateDataStore
 /// Represents the CreateDataStore command.
-/// </param>
-/// <param name="CommandType_DestroyDataStore">
+///
+/// \param CommandType_DestroyDataStore
 /// Represents the DestroyDataStore command.
-/// </param>
-/// <param name="CommandType_ListDataStores">
+///
+/// \param CommandType_ListDataStores
 /// Represents the ListDataStores command.
-/// </param>
+///
+/// \remarks
+/// These parameters are not supported in this release. 
+/// They are provided here for informational use only. OSGeo 
+/// reserves the right to change the software related to the content herein.
+///
+
 public __value enum CommandType {
-    /// Represents the Select Command.
 	CommandType_Select = FdoCommandType_Select,
-
-    /// Represents the Insert Command.
 	CommandType_Insert = FdoCommandType_Insert,
-
-    /// Represents the Delete Command.
 	CommandType_Delete = FdoCommandType_Delete,
-
-    /// Represents the Update Command.
 	CommandType_Update = FdoCommandType_Update,
-
-    /// Represents the DescribeSchema Command.
 	CommandType_DescribeSchema = FdoCommandType_DescribeSchema,
-
-    /// Represents the DescribeSchemaMapping Command.
 	CommandType_DescribeSchemaMapping = FdoCommandType_DescribeSchemaMapping,
-
-    /// Represents the ApplySchema command.
 	CommandType_ApplySchema = FdoCommandType_ApplySchema,
-
-    /// Represents the DestroySchema command.
 	CommandType_DestroySchema = FdoCommandType_DestroySchema,
-
-    /// Represents the ActivateSpatialContext command.
 	CommandType_ActivateSpatialContext = FdoCommandType_ActivateSpatialContext,
-
-    /// Represents the CreateSpatialContext command.
 	CommandType_CreateSpatialContext = FdoCommandType_CreateSpatialContext,
-
-    /// Represents the DestroySpatialContext command.
 	CommandType_DestroySpatialContext = FdoCommandType_DestroySpatialContext,
-
-    /// Represents the GetSpatialContexts command.
 	CommandType_GetSpatialContexts = FdoCommandType_GetSpatialContexts,
-
-    /// Represents the CreateMeasureUnit command.
 	CommandType_CreateMeasureUnit = FdoCommandType_CreateMeasureUnit,
-
-    /// Represents the DestroyMeasureUnit command.
 	CommandType_DestroyMeasureUnit = FdoCommandType_DestroyMeasureUnit,
-
-    /// Represents the GetMeasureUnits command.
 	CommandType_GetMeasureUnits = FdoCommandType_GetMeasureUnits,
-
-    /// Represents the SQLCommand command.
 	CommandType_SQLCommand = FdoCommandType_SQLCommand,
-
-    /// Represents the AcquireLock command.
 	CommandType_AcquireLock = FdoCommandType_AcquireLock,
-
-    /// Represents the GetLockInfo command.
 	CommandType_GetLockInfo = FdoCommandType_GetLockInfo,
-
-    /// Represents the GetLockedObjects command.
 	CommandType_GetLockedObjects = FdoCommandType_GetLockedObjects,
-
-    /// Represents the GetLockOwners command.
 	CommandType_GetLockOwners = FdoCommandType_GetLockOwners,
-
-    /// Represents the ReleaseLock command.
 	CommandType_ReleaseLock = FdoCommandType_ReleaseLock,
-
-    /// Represents the ActivateLongTransaction command.
 	CommandType_ActivateLongTransaction = FdoCommandType_ActivateLongTransaction,
-
-    /// Represents the DeactivateLongTransaction command.
 	CommandType_DeactivateLongTransaction = FdoCommandType_DeactivateLongTransaction,
-
-    /// Represents the CommitLongTransaction command.
 	CommandType_CommitLongTransaction = FdoCommandType_CommitLongTransaction,
-
-    /// Represents the CreateLongTransaction command.
 	CommandType_CreateLongTransaction = FdoCommandType_CreateLongTransaction,
-
-    /// Represents the GetLongTransactions command.
 	CommandType_GetLongTransactions = FdoCommandType_GetLongTransactions,
-
-    /// Represents the FreezeLongTransaction command.
 	CommandType_FreezeLongTransaction = FdoCommandType_FreezeLongTransaction,
-
-    /// Represents the RollbackLongTransaction command.
 	CommandType_RollbackLongTransaction = FdoCommandType_RollbackLongTransaction,
-
-    /// Represents the ActivateLongTransactionCheckpoint command.
 	CommandType_ActivateLongTransactionCheckpoint = FdoCommandType_ActivateLongTransactionCheckpoint,
-
-    /// Represents the CreateLongTransactionCheckpoint command.
 	CommandType_CreateLongTransactionCheckpoint = FdoCommandType_CreateLongTransactionCheckpoint,
-
-    /// Represents the GetLongTransactionCheckpoints command.
 	CommandType_GetLongTransactionCheckpoints = FdoCommandType_GetLongTransactionCheckpoints,
-
-    /// Represents the RollbackLongTransactionCheckpoint command.
 	CommandType_RollbackLongTransactionCheckpoint = FdoCommandType_RollbackLongTransactionCheckpoint,
-
-    /// Represents the ChangeLongTransactionPrivileges command.
 	CommandType_ChangeLongTransactionPrivileges = FdoCommandType_ChangeLongTransactionPrivileges,
-
-    /// Represents the GetLongTransactionPrivileges command.
 	CommandType_GetLongTransactionPrivileges = FdoCommandType_GetLongTransactionPrivileges,
-
-    /// Represents the ChangeLongTransactionSet command.
 	CommandType_ChangeLongTransactionSet = FdoCommandType_ChangeLongTransactionSet,
-
-    /// Represents the GetLongTransactionsInSet command.
 	CommandType_GetLongTransactionsInSet = FdoCommandType_GetLongTransactionsInSet,
-
-    /// Represents the NetworkShortestPath command.
 	CommandType_NetworkShortestPath = FdoCommandType_NetworkShortestPath,
-
-    /// Represents the NetworkAllPaths command.
 	CommandType_NetworkAllPaths = FdoCommandType_NetworkAllPaths,
-
-    /// Represents the NetworkReachableNodes command.
 	CommandType_NetworkReachableNodes = FdoCommandType_NetworkReachableNodes,
-
-    /// Represents the NetworkReachingNodes command.
 	CommandType_NetworkReachingNodes = FdoCommandType_NetworkReachingNodes,
-
-    /// Represents the NetworkNearestNeighbors command.
 	CommandType_NetworkNearestNeighbors = FdoCommandType_NetworkNearestNeighbors,
-
-    /// Represents the NetworkWithinCost command.
 	CommandType_NetworkWithinCost = FdoCommandType_NetworkWithinCost,
-
-    /// Represents the NetworkTSP command.
 	CommandType_NetworkTSP = FdoCommandType_NetworkTSP,
-
-    /// Represents the ActivateTopologyArea command.
 	CommandType_ActivateTopologyArea = FdoCommandType_ActivateTopologyArea,
-
-    /// Represents the DeactivateTopologyArea command.
 	CommandType_DeactivateTopologyArea = FdoCommandType_DeactivateTopologyArea,
-
-    /// Represents the ActivateTopologyInCommandResult command.
 	CommandType_ActivateTopologyInCommandResult = FdoCommandType_ActivateTopologyInCommandResult,
-
-    /// Represents the DeactivateTopologyInCommandResults command.
 	CommandType_DeactivateTopologyInCommandResults = FdoCommandType_DeactivateTopologyInCommandResults,
-
-    /// Represents the SelectAggregates command.
 	CommandType_SelectAggregates = FdoCommandType_SelectAggregates,
-
-    /// Represents the index of the first provider specific command.
 	CommandType_FirstProviderCommand = FdoCommandType_FirstProviderCommand,
-
-    /// Represents the CreateDataStore command.
     CommandType_CreateDataStore = FdoCommandType_CreateDataStore,
-
-    /// Represents the DestroyDataStore command.
     CommandType_DestroyDataStore = FdoCommandType_DestroyDataStore,
-
-    /// Represents the ListDatastores command
 	CommandType_ListDataStores = FdoCommandType_ListDataStores,
 };
 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgIdentifierCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgIdentifierCollection.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgIdentifierCollection.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -226,10 +226,11 @@
     /// 
     /// \param array 
     /// Output the one-dimensional Array that is the destination of the elements copied from this collection.
-    /// \param startAt 
+    ///
+    /// \param index 
     /// Input an integer that represents the index in array at which copying begins.
     /// 
-	System::Void CopyTo(NAMESPACE_OSGEO_FDO_EXPRESSION::Identifier* array[],System::Int32 size);
+	System::Void CopyTo(NAMESPACE_OSGEO_FDO_EXPRESSION::Identifier* array[],System::Int32 index);
 
 
     /// \brief

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgParameterValueCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgParameterValueCollection.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgParameterValueCollection.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -231,9 +231,8 @@
     /// \param startAt 
     /// Input an integer that represents the index in array at which copying begins.
     /// 
-	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS::ParameterValue* array[],System::Int32 size);
+	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS::ParameterValue* array[],System::Int32 startAt);
 
-
     /// \brief
     /// Gets the item in the collection at the specified index. 
     /// 

Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgPropertyValueCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgPropertyValueCollection.h	2007-02-07 21:37:53 UTC (rev 733)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Commands/mgPropertyValueCollection.h	2007-02-07 21:41:24 UTC (rev 734)
@@ -227,7 +227,7 @@
     /// \param startAt 
     /// Input an integer that represents the index in array at which copying begins.
     /// 
-	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS::PropertyValue* array[],System::Int32 size);
+	System::Void CopyTo(NAMESPACE_OSGEO_FDO_COMMANDS::PropertyValue* array[],System::Int32 startAt);
 
     /// \brief
     /// Gets the item in the collection at the specified index. 



More information about the fdo-commits mailing list