remove link in brief tag
[platform/framework/native/net.git] / inc / FNetNetAccountInfo.h
index 096a76a..07e53c4 100644 (file)
@@ -219,8 +219,8 @@ public:
         * @return              An error code
         * @param[in]   localAddrScheme                 An indicator specifying whether to use a static local IP address
         * @param[in]   pLocalAddress                   The local IP address @n
-        *                                                                              If @c localAddrScheme is set to NET_ADDRESS_SCHEME_STATIC, the local IP address assigned is static.
-        *                                                                              If @c localAddrScheme is set to NET_ADDRESS_SCHEME_DYNAMIC or NET_ADDRESS_SCHEME_NONE, this parameter is ignored.
+        *                                                                              If @c localAddrScheme is set to @c NET_ADDRESS_SCHEME_STATIC, the local IP address assigned is static.
+        *                                                                              If @c localAddrScheme is set to @c NET_ADDRESS_SCHEME_DYNAMIC or @c NET_ADDRESS_SCHEME_NONE, this parameter is ignored.
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_INVALID_ARG                   A specified input parameter is invalid.
         * @see                 GetLocalAddress()
@@ -250,11 +250,12 @@ public:
         *                                      else @c null if an error occurs or the dynamic address scheme is being used
         * @exception           E_SUCCESS                               The method is successful.
         * @exception           E_INVALID_OPERATION             This operation is not allowed in the dynamic address scheme.
-        * @remarks                     When this instance is got by NetAccountManager::GetNetAccountInfoN(),
+        * @remarks             
+        *                              - When this instance is got by NetAccountManager::GetNetAccountInfoN(),
         *                                      - this method returns a statically assigned primary DNS address pointer if the DNS address scheme is NET_ADDRESS_SCHEME_STATIC
         *                                      - this method returns @n null if the DNS address scheme is @c NET_ADDRESS_SCHEME_DYNAMIC @n
-        *                      The specific error code can be accessed using the GetLastResult() method.
-        * @see                         GetSecondaryDnsAddress()
+        *                              - The specific error code can be accessed using the GetLastResult() method.
+        * @see                 GetSecondaryDnsAddress()
         */
        const IpAddress* GetPrimaryDnsAddress(void) const;
 
@@ -274,16 +275,16 @@ public:
 
        /**
         * Enables or disables the use of a static DNS address with the specified IpAddress objects. @n
-        * If @c dnsAddrScheme is NET_ADDRESS_SCHEME_DYNAMIC, both @c primaryDnsAddress and @c secondaryDnsAddress are ignored. @n
-        * If @c dnsAddrScheme is NET_ADDRESS_SCHEME_STATIC, @c primaryDnsAddress must be a valid IpAddress.
+        * If @c dnsAddrScheme is @c NET_ADDRESS_SCHEME_DYNAMIC, both @c primaryDnsAddress and @c secondaryDnsAddress are ignored. @n
+        * If @c dnsAddrScheme is @c NET_ADDRESS_SCHEME_STATIC, @c primaryDnsAddress must be a valid IpAddress.
         * However, @c pSecondaryDnsAddress can be @c null.
         *
         * @since               2.0
         *
         * @return              An error code
         * @param[in]   dnsAddrScheme                   An indicator specifying whether or not to use a static DNS address
-        * @param[in]   pPrimaryDnsAddress              The statically assigned primary DNS address if @c dnsAddrScheme is NET_ADDRESS_SCHEME_STATIC
-        * @param[in]   pSecondaryDnsAddress    The statically assigned secondary DNS address if @c dnsAddrScheme is NET_ADDRESS_SCHEME_STATIC
+        * @param[in]   pPrimaryDnsAddress              The statically assigned primary DNS address if @c dnsAddrScheme is @c NET_ADDRESS_SCHEME_STATIC
+        * @param[in]   pSecondaryDnsAddress    The statically assigned secondary DNS address if @c dnsAddrScheme is @c NET_ADDRESS_SCHEME_STATIC
         * @exception   E_SUCCESS                               The method is successful.
         * @exception   E_INVALID_ARG                   A specified input parameter is invalid.
         * @see                 GetPrimaryDnsAddress()