Implementation of ImmutableString
[platform/framework/native/appfw.git] / inc / FAppIAppControlProviderEventListener.h
index 3c19554..abcb7a2 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -39,7 +38,7 @@ namespace Tizen { namespace App
 
 /**
 *   @interface  IAppControlProviderEventListener
-*   @brief      This interface defines the provider listener for the AppControl request.
+*   @brief      This interface defines the provider listener for the %AppControl request.
 *
 *   @since     2.0
 *
@@ -70,13 +69,12 @@ public:
         * @param[in]   operationId     The application control operation ID
         * @param[in]   pUriData        A pointer to the URI data
         * @param[in]   pMimeType       A pointer to the MIME type (RFC 2046) data
-        * @param[in]   pExtraData      A pointer to an argument map of key and value pair where the key is of type String and the value is of type String or of type ArrayList of String
+        * @param[in]   pExtraData      A pointer to an argument map of key and value pair where the key is of type Tizen::Base::String and the value is of type %Tizen::Base::String or of type Tizen::Base::Collection::ArrayList of %Tizen::Base::String
         * @remarks     To reply to the application control request, use AppControlProviderManager::SendAppControlResult() with the given request ID.
         * @remarks     When the application receives the AppControl request on the background,
         *                      %OnAppControlRequestReceived() is invoked before UiApp::OnForeground().
         * @remarks     When the application control is resolved with the file extension with AppControl::FindAndStart(),
         *                      the delivered file extension is converted to the corresponding MIME type in the @c pMimeType parameter.
-        * @see AppControlProviderManager::SendAppControlResult()
         */
        virtual void OnAppControlRequestReceived(RequestId reqId, const Tizen::Base::String& operationId, const Tizen::Base::String* pUriData, const Tizen::Base::String* pMimeType, const Tizen::Base::Collection::IMap* pExtraData) = 0;