From: Jaehwan Lee Date: Mon, 25 Mar 2013 06:58:12 +0000 (+0900) Subject: Add @feature tag X-Git-Tag: accepted/tizen_2.1/20130425.034729~43^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad0302371c4ad2ca2fcda52e365c4ec68862528c;p=framework%2Fosp%2Fnet.git Add @feature tag Change-Id: Idc45c247900e7774f4f24344cccd8067d823afa4 Signed-off-by: Jaehwan Lee --- diff --git a/inc/FNetWifiWifiDirectDeviceManager.h b/inc/FNetWifiWifiDirectDeviceManager.h index b2c240b..598337e 100644 --- a/inc/FNetWifiWifiDirectDeviceManager.h +++ b/inc/FNetWifiWifiDirectDeviceManager.h @@ -70,14 +70,19 @@ public: * * @since 2.0 * + * @feature %http://tizen.org/feature/network.wifi.direct + * * @return A Tizen::Base::Collection::IList containing WifiDirectDeviceInfo of local devices in the system if successful, @n * else @c null * @exception E_SUCCESS The method is successful. * @exception E_SYSTEM An internal error has occurred. * @exception E_OUT_OF_MEMORY The memory is insufficient. - * @exception E_UNSUPPORTED_OPERATION There is no WifiDirectDeviceInfo available since the device does not support the Wi-Fi Direct feature. - * @remarks Currently, a single WifiDirectDeviceInfo instance is returned because the concurrent mode is not supported. - * The specific error code can be accessed using the GetLastResult() method. + * @exception E_UNSUPPORTED_OPERATION The device does not support the Wi-Fi Direct feature. + * For more information, see Application Filtering. + * @remarks + * - Currently, a single WifiDirectDeviceInfo instance is returned because the concurrent mode is not supported. + * - The specific error code can be accessed using the GetLastResult() method. + * - Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue() methods. */ static Tizen::Base::Collection::IList* GetAllDeviceInfoN(void); @@ -86,6 +91,8 @@ public: * * @since 2.0 * + * @feature %http://tizen.org/feature/network.wifi.direct + * * @return An instance of WifiDirectDevice if successful, @n * else @c null * @param[in] pLocalDeviceInfo A pointer to WifiDirectDeviceInfo @@ -94,11 +101,13 @@ public: * @exception E_INVALID_ARG The specified input parameter is invalid. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_UNSUPPORTED_OPERATION The device does not support the Wi-Fi Direct feature. - * @remarks If the value of @c pLocalDeviceInfo is @c null, the WifiDirectDevice instance is created for the system default - * device. - * Otherwise, the value of @c pLocalDeviceInfo should be one of the elements obtained from WifiDirectDeviceManager::GetAllDeviceInfoN() to - * create a valid %WifiDirectDevice instance. - * The specific error code can be accessed using the GetLastResult() method. + * For more information, see Application Filtering. + * @remarks + * - If the value of @c pLocalDeviceInfo is @c null, the WifiDirectDevice instance is created for the system default device. + * Otherwise, the value of @c pLocalDeviceInfo should be one of the elements obtained + * from WifiDirectDeviceManager::GetAllDeviceInfoN() to create a valid %WifiDirectDevice instance. + * - The specific error code can be accessed using the GetLastResult() method. + * - Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue() methods. */ static WifiDirectDevice* GetWifiDirectDeviceN(const WifiDirectDeviceInfo* pLocalDeviceInfo = null); diff --git a/inc/FNetWifiWifiManager.h b/inc/FNetWifiWifiManager.h index 747c1af..9b9106b 100755 --- a/inc/FNetWifiWifiManager.h +++ b/inc/FNetWifiWifiManager.h @@ -119,14 +119,19 @@ public: * Initializes this instance of %WifiManager with the specified listener. * * @since 2.0 + * + * @feature %http://tizen.org/feature/network.wifi * * @return An error code * @param[in] listener A reference to the listener instance * @exception E_SUCCESS The method is successful. * @exception E_SYSTEM A system error has occurred. * @exception E_OUT_OF_MEMORY The memory is insufficient. - * @exception E_UNSUPPORTED_OPERATION This operation is not supported. - * @remarks The @c listener instance must not be deleted before destructing this instance. + * @exception E_UNSUPPORTED_OPERATION The device does not support the Wi-Fi feature. + * For more information, see Application Filtering. + * @remarks + * - The @c listener instance must not be deleted before destructing this instance. + * - Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue() methods. */ result Construct(IWifiManagerEventListener& listener);