Autodesk FDO Provider for Oracle .NET API Reference

Autodesk FDO Oracle Provider .NET API

.NET API Reference Autodesk FDO Provider for Oracle

mgOvDataPropertyDefinitionCollection.h

Go to the documentation of this file.
00001 /*
00002 * (C) Copyright 2005 by Autodesk, Inc. All Rights Reserved.
00003 *
00004 * By using this code, you are agreeing to the terms and conditions of
00005 * the License Agreement included in the documentation for this code.
00006 *
00007 * AUTODESK MAKES NO WARRANTIES, EXPRESS OR IMPLIED, AS TO THE
00008 * CORRECTNESS OF THIS CODE OR ANY DERIVATIVE WORKS WHICH INCORPORATE
00009 * IT. AUTODESK PROVIDES THE CODE ON AN "AS-IS" BASIS AND EXPLICITLY
00010 * DISCLAIMS ANY LIABILITY, INCLUDING CONSEQUENTIAL AND INCIDENTAL
00011 * DAMAGES FOR ERRORS, OMISSIONS, AND OTHER PROBLEMS IN THE CODE.
00012 *
00013 * Use, duplication, or disclosure by the U.S. Government is subject
00014 * to restrictions set forth in FAR 52.227-19 (Commercial Computer
00015 * Software Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
00016 * (Rights in Technical Data and Computer Software), as applicable.
00017 *
00018 *
00019 */
00020 
00021 #pragma once
00022 
00023 class FdoOracleOvDataPropertyDefinitionCollection;
00024 
00025 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA
00026 public __gc class PhysicalElementMapping;
00027 END_NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA
00028 
00029 BEGIN_NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE
00030 
00031 public __gc class OvDataPropertyDefinition;
00032 
00033 /// <summary>
00034 ///     OvDataPropertyDefinitionCollection is a collection of name-value pairs.
00035 /// </summary>
00036 [System::Reflection::DefaultMemberAttribute("RealTypeItem")]
00037 public __sealed __gc class OvDataPropertyDefinitionCollection : public NAMESPACE_OSGEO_RUNTIME::Disposable, public System::Collections::IList
00038 {
00039 private:
00040     /// <summary>
00041     ///     nested class defined to provide Enumerator.
00042     /// </summary>
00043     __gc class Enumerator : public System::Collections::IEnumerator
00044     {
00045     private:
00046         OvDataPropertyDefinitionCollection* m_pCol;
00047         System::Int32 m_nIdx;
00048 
00049     public:
00050         Enumerator(OvDataPropertyDefinitionCollection* elements) : m_pCol(elements), m_nIdx(-1) 
00051         {
00052 
00053         }
00054 
00055         __property System::Object* get_Current();
00056 
00057         System::Boolean MoveNext();
00058 
00059         System::Void Reset();
00060     };
00061 
00062 public private:
00063     OvDataPropertyDefinitionCollection(System::IntPtr unmanaged, System::Boolean autoDelete);
00064 
00065     inline FdoOracleOvDataPropertyDefinitionCollection* GetImpObj();
00066 
00067 private:
00068     // System::Collections::ICollection interfaces
00069     System::Void System::Collections::ICollection::CopyTo(System::Array* array,System::Int32 index);
00070 
00071     __property System::Object* System::Collections::ICollection::get_SyncRoot();
00072 
00073     __property System::Boolean System::Collections::ICollection::get_IsSynchronized();
00074 
00075     //System::Collections::IList interfaces
00076     __property System::Boolean System::Collections::IList::get_IsFixedSize();
00077 
00078     __property System::Boolean System::Collections::IList::get_IsReadOnly();
00079 
00080     System::Int32 System::Collections::IList::Add(Object* value);
00081 
00082     System::Boolean System::Collections::IList::Contains(Object* value);
00083 
00084     System::Int32 System::Collections::IList::IndexOf(Object* value);
00085 
00086     System::Void System::Collections::IList::Insert(System::Int32 index, Object* value);
00087 
00088     System::Void System::Collections::IList::Remove(Object* value);
00089 
00090     __property Object* System::Collections::IList::get_Item(System::Int32 index);
00091 
00092     __property System::Void  System::Collections::IList::set_Item(System::Int32 index, Object* value);
00093 
00094 public:
00095     OvDataPropertyDefinitionCollection();
00096 
00097     OvDataPropertyDefinitionCollection(NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalElementMapping* parent);
00098 
00099     /// <summary>
00100     ///    Gets the count of items in collection.
00101     /// </summary>
00102     __property System::Int32 get_Count(System::Void);
00103 
00104     /// <summary>
00105     ///    Gets an enumerator that can iterate through a collection.
00106     /// </summary>
00107     __sealed System::Collections::IEnumerator* GetEnumerator(System::Void);
00108 
00109     /// <summary>
00110     ///     Removes the index-th OvDataPropertyDefinition from this collection.
00111     /// </summary>
00112     /// <param name="index">
00113     ///     Input index of the element to remove.
00114     /// </param>
00115     System::Void RemoveAt(System::Int32 index);
00116 
00117     /// <summary>
00118     ///     Removes all elements from the collection.
00119     /// </summary>
00120     System::Void  Clear();
00121 
00122     /// <summary>
00123     ///     Adds a OvDataPropertyDefinition object into the collection.
00124     /// </summary>
00125     /// <param name="value">
00126     ///     Input the OvDataPropertyDefinition object to add.
00127     /// </param>
00128     /// <returns>
00129     ///     Returns the position into which the new element was inserted.
00130     /// </returns>
00131     System::Int32 Add(NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00132 
00133     /// <summary>
00134     ///     Determines the index of a specific OvDataPropertyDefinition object.
00135     /// </summary>
00136     /// <param name="value">
00137     ///     Input the OvDataPropertyDefinition object to locate in the collection.
00138     /// </param>
00139     /// <returns>
00140     ///     The index of value if found in the collection; otherwise, -1.
00141     /// </returns>
00142     System::Int32 IndexOf(NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00143 
00144     /// <summary>
00145     ///     Inserts a OvDataPropertyDefinition object into the collection at the specified position.
00146     /// </summary>
00147     /// <param name="index">
00148     ///     Input the zero-based index at which value should be inserted. 
00149     /// </param>
00150     /// <param name="value">
00151     ///     Input the OvDataPropertyDefinition object to insert.
00152     /// </param>
00153     System::Void Insert(System::Int32 index, NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00154 
00155     /// <summary>
00156     ///     Removes the first occurrence of a specific OvDataPropertyDefinition object.
00157     /// </summary>
00158     /// <param name="value">
00159     ///     Input the OvDataPropertyDefinition object to remove from the collection.
00160     /// </param>
00161     System::Void Remove(NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00162 
00163     /// <summary>
00164     ///     Determines whether the collection contains a specific OvDataPropertyDefinition object.
00165     /// </summary>
00166     /// <param name="value">
00167     ///     Input The OvDataPropertyDefinition object to search in the collection.
00168     /// </param>
00169     /// <returns>
00170     ///     Returns true if the value is found in the collection; otherwise, false.
00171     /// </returns>
00172     System::Boolean Contains(NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00173 
00174     /// <summary>
00175     ///     Copies the elements of the collection to an array.
00176     /// </summary>
00177     /// <param name="array">
00178     ///     Output the one-dimensional Array that is the destination of the elements copied from this collection. 
00179     /// </param>
00180     /// <param name="startAt">
00181     ///     Input an integer that represents the index in array at which copying begins. 
00182     /// </param>
00183     System::Void CopyTo(NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* array[],System::Int32 size);
00184 
00185     //this is a hedious workaround for a bug in VS2002. 
00186     /// <summary>
00187     ///     Gets or sets a OvDataPropertyDefinition in the collection.
00188     /// </summary>
00189     /// <param name="index">
00190     ///     Input index of the OvDataPropertyDefinition to retrieve or set (System::Int32). 
00191     /// </param>
00192     __property NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* get_RealTypeItem(System::Int32 index);
00193     __property NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* get_RealTypeItem(System::String* index);
00194 
00195     __property System::Void  set_RealTypeItem(System::Int32 index, NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00196 
00197     __property NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* get_Item(System::Int32 index);
00198 
00199     __property System::Void  set_Item(System::Int32 index, NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE::OvDataPropertyDefinition* value);
00200 
00201 protected:
00202     System::Void ReleaseUnmanagedObject();
00203 };
00204 
00205 END_NAMESPACE_AUTODESK_GIS_FDO_PROVIDERS_RDBMS_OVERRIDE_ORACLE

Comments?