uiservicetab/vimpstcmdprocess/tsrc/vimpstcmdprocess_utest/src/stub/s_mccaparameter.cpp
changeset 0 5e5d6b214f4f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/uiservicetab/vimpstcmdprocess/tsrc/vimpstcmdprocess_utest/src/stub/s_mccaparameter.cpp	Tue Feb 02 10:12:18 2010 +0200
@@ -0,0 +1,156 @@
+/*
+* Copyright (c) 2006, 2007 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  s_enginecontmgtextfeatures.cpp
+*
+*/
+
+#include "s_mccaparameter.h"
+
+
+/** @file mccaparameter.h
+ *
+ *  MCCAParameter class is used to store, control and define how the CCA application is launched
+ *  with the contact specified data.
+ *
+ *  Example usage of the API:
+ *  @code
+ *   MCCAParameter* aParameter = TCCAFactory::NewParameterL()
+ *   aParameter->SetConnectionFlag(ENormal);
+ *   aParameter->SetContactDataFlag(EContactId);
+ *   aParameter->SetContactDataL(aString);
+ *
+ *   aParameter->SetLaunchedViewUid(aUid);
+ *
+ *  @endcode
+ *
+ *  @lib ccaclient
+ *  @since S60 v5.0
+ */
+MCCAParameter* MCCAParameterstub::NewL()
+    {
+    MCCAParameter* parameter = new(ELeave)MCCAParameterstub;
+        return parameter;
+    }
+
+    /**
+     * Getter for the flags of connection.
+     * @since S60 5.0
+     * @return the flags.
+     */
+     MCCAParameter::TConnectionFlags MCCAParameterstub::ConnectionFlag()
+        {
+        
+        }
+
+    /**
+     * Getter for the contact data flags.
+     * @since S60 5.0
+     * @return the flags.
+     */
+     MCCAParameter::TContactDataFlags MCCAParameterstub::ContactDataFlag()
+        {
+        
+        }
+
+    /**
+     * Getter for the contact data.
+     * @leave KErrArgument if data not set.
+     * @since S60 5.0
+     * @return the reference of contact data.
+     */
+     HBufC& MCCAParameterstub::ContactDataL()
+        {
+        
+        }
+
+    /**
+     * Getter for the view uid.
+     * @since S60 5.0
+     * @return the Uid.
+     */
+     TUid MCCAParameterstub::LaunchedViewUid()
+        {
+        
+        }
+
+    /**
+     * Getter for the version.
+     * @since S60 5.0
+     * @return the version.
+     */
+     TInt32 MCCAParameterstub::Version()
+        {
+                
+                }
+
+    /**
+     * Setter for the flag of connection.
+     *
+     * @see TConnectionFlags
+     * @since S60 5.0
+     * @param aFlags: flags of connection
+     */
+     void MCCAParameterstub::SetConnectionFlag(const MCCAParameter::TConnectionFlags aConnectionFlags)
+        {
+        
+        }
+
+    /**
+     * Setter for the contact data flag.
+     *
+     * @see TContactDataFlags
+     * @since S60 5.0
+     * @param aFlags: flags of connection
+     */
+     void MCCAParameterstub::SetContactDataFlag(const MCCAParameter::TContactDataFlags aContactDataFlags)
+        {
+        }        
+
+    /**
+     * Setter for the contact data.
+     * If you are using TContactDataFlags::EContactLink, the MVPbkContactLink
+     * should be streamed with PackLC before given for this method.
+     * Ownership is NOT transferred.
+     * @see MVPbkContactLink from  phonebook.
+     * @leave KErrNotFound if contact data flag is not
+     *        set before calling this method.
+     * @see MCCAParameter::SetContactDataFlags
+     * @since S60 5.0
+     * @param aContactData: given contact data.
+     */
+     void MCCAParameterstub::SetContactDataL(const TDesC& aContactData)
+        {
+        }
+
+    /**
+     * Setter for the launched view uid. Use this when there
+     * is need to get a particular view opened first on launch of CCA.
+     * If view uid is not set, CCA uses the default view.
+     * NOT IMPLEMENTED YET!
+     * @since S60 5.0
+     * @param aContactData: given contact data.
+     */
+     void MCCAParameterstub::SetLaunchedViewUid(const TUid aUid)
+        {
+        
+        }
+
+    void MCCAParameterstub::Close() 
+         {
+         
+         }
+
+    
+    // End of File
+