add the predefined @remark item related with @feature tag
authorJoonho Cho <jh03.cho@samsung.com>
Tue, 26 Mar 2013 14:31:02 +0000 (23:31 +0900)
committerJoonho Cho <jh03.cho@samsung.com>
Tue, 26 Mar 2013 14:31:02 +0000 (23:31 +0900)
Change-Id: I11dc4320cf3c0a5f3b89e9530905429290101fc1
Signed-off-by: Joonho Cho <jh03.cho@samsung.com>
inc/FNetNfcNdefPushManager.h
inc/FNetNfcNfcManager.h

index f5039f1..17fc026 100755 (executable)
@@ -96,6 +96,8 @@ public:
         *                                      Application Filtering</a>.
         * @exception   E_OPERATION_FAILED      The operation has failed.
         * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
+        * @remarks     Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue()
+        *              methods.
         */
        result SetNdefPushManagerListener(INdefPushManagerListener* pListener);
 
@@ -123,6 +125,8 @@ public:
         *                                      Application Filtering</a>.
         * @exception   E_OPERATION_FAILED      The operation has failed.
         * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
+        * @remarks     Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue()
+        *              methods.
         */
        result Push(const NdefMessage& message);
 
@@ -149,6 +153,8 @@ public:
         * @exception   E_SYSTEM                The method cannot proceed due to a severe system error.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/nfc_reserved_push.htm">
         *              The NFC Reserved Push guide</a>
+        * @remarks     Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue()
+        *              methods.
         */
        result ActivateReservedPush(void);
 
@@ -175,6 +181,8 @@ public:
         * @exception   E_SYSTEM                The method cannot proceed due to a severe system error.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/nfc_reserved_push.htm">
         *              The NFC Reserved Push guide</a>
+        * @remarks     Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue()
+        *              methods.
         */
        result DeactivateReservedPush(void);
 
@@ -223,8 +231,10 @@ public:
         * @exception   E_SYSTEM                The method cannot proceed due to a severe system error.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/nfc_reserved_push.htm">
         *              The NFC Reserved Push guide</a>
-        * @remarks     The only one message can be selected to push. So the previously selected message will be replaced
-        *              by the new one.
+        * @remarks     - The only one message can be selected to push. So the previously selected message will be replaced
+        *                by the new one.
+        *              - Before calling this method, check whether the feature is supported by
+        *                %Tizen::System::SystemInfo::GetValue() methods.
         */
        result PickReservedPushMessage(const Tizen::App::PackageId& packageId);
 
@@ -246,7 +256,9 @@ public:
         * @exception   E_SYSTEM                The method cannot proceed due to a severe system error.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/nfc_reserved_push.htm">
         *              The NFC Reserved Push guide</a>
-        * @remarks     The specific error code can be accessed using the GetLastResult() method.
+        * @remarks     - 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.
         */
        Tizen::App::PackageId GetPickedReservedPushMessage(void) const;
 
@@ -282,6 +294,8 @@ public:
         *                replaced by the new one.
         *              - The registered NDEF message is pushed only if it is selected by the user through the Setting
         *                application.
+        *              - Before calling this method, check whether the feature is supported by
+        *                %Tizen::System::SystemInfo::GetValue() methods.
         */
        static result RegisterNdefPushMessage(const NdefMessage& message, const Tizen::Base::String& description);
 
@@ -304,6 +318,8 @@ public:
         * @exception   E_SYSTEM                The method cannot proceed due to a severe system error.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/nfc_reserved_push.htm">
         *              The NFC Reserved Push guide</a>
+        * @remarks     Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue()
+        *              methods.
         */
        static result UnregisterNdefPushMessage(void);
 
index 886e02e..b8098ff 100755 (executable)
@@ -193,6 +193,8 @@ public:
         *                                      Application Filtering</a>.
         * @exception   E_OUT_OF_MEMORY         The memory is insufficient.
         * @exception   E_SYSTEM                A system error has occurred.
+        * @remarks     Before calling this method, check whether the feature is supported by %Tizen::System::SystemInfo::GetValue()
+        *              methods.
         */
        result Construct(INfcManagerEventListener& listener);
 
@@ -439,6 +441,8 @@ public:
         *                outside this method. The NdefMessage::RemoveAllRecords() method should be called with @c true as
         *                the input value immediately before the NdefMessage instance is deleted.
         *              - 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.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/conditional_nfc_app_launch.htm">
         *              The Conditional NFC App Launch guide</a>
         * @see         Tizen::App::AppManager::RegisterAppLaunch
@@ -465,10 +469,12 @@ public:
         *                                      Application Filtering</a>.
         * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
         * @exception   E_SYSTEM                A system error has occurred.
-        * @remarks     Note that this method is used to enable or disable the launch pop-up when the application is in the
-        *              foreground. Although the application disables the launch pop-up by invoking this method, it is
-        *              automatically enabled when the application goes to the background. The launch pop-up is enabled by
-        *              default.
+        * @remarks     - Note that this method is used to enable or disable the launch pop-up when the application is in
+        *                the foreground. Although the application disables the launch pop-up by invoking this method, it
+        *                is automatically enabled when the application goes to the background. The launch pop-up is
+        *                enabled by default.
+        *              - Before calling this method, check whether the feature is supported by
+        *                %Tizen::System::SystemInfo::GetValue() methods.
         * @see         <a href="../org.tizen.native.appprogramming/html/guide/net/conditional_nfc_app_launch.htm">
         *              The Conditional NFC App Launch guide</a>
         */