Changes between Version 19 and Version 20 of FDORfc17
- Timestamp:
- 04/28/08 09:36:39 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc17
v19 v20 309 309 /// Input A Pointer to the parent schema object of the collection 310 310 /// 311 FunctionCollection( NAMESPACE_OSGEO_FDO_SCHEMA::SchemaElement* parent);311 FunctionCollection(OSGeo::FDO::Schema::SchemaElement* parent); 312 312 313 313 /// \brief … … 321 321 /// once it no longer referenced. 322 322 /// 323 FunctionCollection(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_RUNTIME::Disposable(unmanaged, autoDelete) 324 { 325 } 323 FunctionCollection(System::IntPtr unmanaged, System::Boolean autoDelete); 326 324 327 325 /// \brief … … 342 340 343 341 /// \brief 344 /// Removes the index-th OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction from this collection.342 /// Removes the index-th IFunction from this collection. 345 343 /// 346 344 /// \param index … … 363 361 /// Returns the position into which the new element was inserted. 364 362 /// 365 System::Int32 Add(OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);363 System::Int32 Add(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 366 364 367 365 /// \brief … … 374 372 /// The index of value if found in the collection; otherwise, -1. 375 373 /// 376 System::Int32 IndexOf(OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);374 System::Int32 IndexOf(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 377 375 378 376 /// \brief … … 395 393 /// Input the IFunction object to insert. 396 394 /// 397 System::Void Insert(System::Int32 index, OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);395 System::Void Insert(System::Int32 index, OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 398 396 399 397 /// \brief … … 403 401 /// Input the IFunction object to remove from the collection. 404 402 /// 405 System::Void Remove(OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);403 System::Void Remove(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 406 404 407 405 /// \brief … … 414 412 /// Returns true if the value is found in the collection; otherwise, false. 415 413 /// 416 System::Boolean Contains(OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);414 System::Boolean Contains(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 417 415 418 416 /// \brief … … 436 434 /// Input an integer that represents the index in array at which copying begins. 437 435 /// 438 System::Void CopyTo(OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* array[],System::Int32 startAt);436 System::Void CopyTo(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* array[],System::Int32 startAt); 439 437 440 438 /// \brief … … 448 446 /// Throws an instance of Exception if the index is out of range or an error occurs. 449 447 /// 450 __property OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* get_RealTypeItem(System::Int32 index);448 __property OSGeo::FDO::Utilities::ExpressionEngine::IFunction* get_RealTypeItem(System::Int32 index); 451 449 452 450 /// \brief … … 459 457 /// Returns an instance of a the collected item. 460 458 /// 461 __property OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* get_RealTypeItem(System::String* index);459 __property OSGeo::FDO::Utilities::ExpressionEngine::IFunction* get_RealTypeItem(System::String* index); 462 460 463 461 /// \brief … … 470 468 /// Input the value of the item 471 469 /// 472 __property System::Void set_RealTypeItem(System::Int32 index, OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);470 __property System::Void set_RealTypeItem(System::Int32 index, OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 473 471 474 472 /// \brief … … 481 479 /// Returns the item at the specified index 482 480 /// 483 __property OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* get_Item(System::Int32 index);481 __property OSGeo::FDO::Utilities::ExpressionEngine::IFunction* get_Item(System::Int32 index); 484 482 485 483 /// \brief … … 492 490 /// Input the value of the item 493 491 /// 494 __property System::Void set_Item(System::Int32 index, OSG EO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);492 __property System::Void set_Item(System::Int32 index, OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value); 495 493 }; 496 494 }}} … … 509 507 /// The definition includes the list of supported signatures for the 510 508 /// function. 511 __property NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::FunctionDefinition *get_FunctionDefinition ();509 __property OSGeo::FDO::Connections::Capabilities::FunctionDefinition *get_FunctionDefinition (); 512 510 };