FDO .NET API Reference Feature Data Objects

mgICreateLongTransaction.h

Go to the documentation of this file.
00001 /*
00002 * Copyright (C) 2004-2006  Autodesk, Inc.
00003 * 
00004 * This library is free software; you can redistribute it and/or
00005 * modify it under the terms of version 2.1 of the GNU Lesser
00006 * General Public License as published by the Free Software Foundation.
00007 * 
00008 * This library is distributed in the hope that it will be useful,
00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011 * Lesser General Public License for more details.
00012 * 
00013 * You should have received a copy of the GNU Lesser General Public
00014 * License along with this library; if not, write to the Free Software
00015 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00016 *
00017 */
00018 
00019 #pragma once
00020 
00021 #include "FDO\Commands\mgICommand.h"
00022 
00023 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION
00024 
00025 /// \ingroup (OSGeoFDOCommandsLongTransaction)
00026 /// \interface OSGeo::FDO::Commands::LongTransaction::ICreateLongTransaction
00027 /// \brief
00028 /// The ICreateLongTransaction interface defines the CreateLongTransaction
00029 /// command which creates a long transaction that is based upon the currently
00030 /// active long transaction. If no long transaction is active, then the long
00031 /// transaction is based upon the root data. Input to the create long
00032 /// transaction command includes a name and description for the new long
00033 /// transaction.
00034 public __gc __interface ICreateLongTransaction : public NAMESPACE_OSGEO_FDO_COMMANDS::ICommand
00035 {
00036 public:
00037     /// \brief
00038     /// Gets the name of the long transaction to create as a string.
00039     /// 
00040     /// \return
00041     /// Returns the name of the long transaction
00042     /// 
00043     __property System::String* get_Name();
00044 
00045     /// \brief
00046     /// Sets the name of the long transaction to create as a string.
00047     /// 
00048     /// \param value 
00049     /// Input the name of the long transaction
00050     /// 
00051     /// \return
00052     /// Returns nothing
00053     /// 
00054     __property System::Void set_Name(System::String* value);
00055 
00056     /// \brief
00057     /// Gets the description of the long transaction to create as a string.
00058     /// 
00059     /// \return
00060     /// Returns the description of the long transaction
00061     /// 
00062     __property System::String* get_Description();
00063 
00064     /// \brief
00065     /// Sets the description of the long transaction to create as a string.
00066     /// 
00067     /// \param value 
00068     /// Input the description of the long transaction
00069     /// 
00070     /// \return
00071     /// Returns nothing
00072     /// 
00073     __property System::Void set_Description(System::String* value);
00074 
00075     /// \brief
00076     /// Executes the create long transaction command.
00077     /// 
00078     /// \return
00079     /// Returns nothing
00080     /// 
00081     System::Void Execute();
00082 };
00083 
00084 END_NAMESPACE_OSGEO_FDO_COMMANDS_LONGTRANSACTION
00085 
00086 

Comments or suggestions? Send us feedback.