[Doxygen] Merge LB's review comment.
authorJaemin Ahn <j.m.ahn@samsung.com>
Wed, 20 Mar 2013 04:07:34 +0000 (13:07 +0900)
committerJaemin Ahn <j.m.ahn@samsung.com>
Wed, 20 Mar 2013 04:07:34 +0000 (13:07 +0900)
Change-Id: Ic49c285b73eaffbb4ee3284e740d9822801fd475
Signed-off-by: Jaemin Ahn <j.m.ahn@samsung.com>
28 files changed:
inc/FNetDhcpClientInfo.h
inc/FNetDns.h [changed mode: 0755->0644]
inc/FNetHttpHttpMessage.h [changed mode: 0755->0644]
inc/FNetHttpHttpMultipartEntity.h [changed mode: 0755->0644]
inc/FNetHttpHttpTransaction.h [changed mode: 0755->0644]
inc/FNetHttpHttpTypes.h [changed mode: 0755->0644]
inc/FNetHttpIHttpProgressEventListener.h [changed mode: 0755->0644]
inc/FNetHttpIHttpTransactionEventListener.h [changed mode: 0755->0644]
inc/FNetILocalDhcpServerEventListener.h
inc/FNetIManagedNetConnectionEventListener.h
inc/FNetINetConnectionEventListener.h
inc/FNetIp4Address.h [changed mode: 0755->0644]
inc/FNetIpAddress.h
inc/FNetIpHostEntry.h
inc/FNetManagedNetConnection.h
inc/FNetNetAccountInfo.h [changed mode: 0755->0644]
inc/FNetNetAccountManager.h [changed mode: 0755->0644]
inc/FNetNetConnection.h [changed mode: 0755->0644]
inc/FNetNetConnectionInfo.h
inc/FNetNetConnectionManager.h [changed mode: 0755->0644]
inc/FNetNetEndPoint.h
inc/FNetNetTypes.h
inc/FNetSockISocketEventListener.h
inc/FNetSockSecureSocket.h [changed mode: 0755->0644]
inc/FNetSockSocket.h [changed mode: 0755->0644]
inc/FNetSockSocketIpMulticastRequestOption.h
inc/FNetSockSocketLingerOption.h
inc/FNetSockSocketUtility.h [changed mode: 0755->0644]

index 1d4423a..c2454fb 100644 (file)
@@ -93,8 +93,8 @@ public:
         *
         * @return              @c true if the values match, @n
         *                          else @c false
-        * @param[in]   rhs     The other Object to compare
-        * @see                 Object::Equals()
+        * @param[in]   rhs     The other Tizen::Base::Object to compare
+        * @see                 Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Tizen::Base::Object& rhs) const;
 
old mode 100755 (executable)
new mode 100644 (file)
index b78a524..b90b996
@@ -84,7 +84,7 @@ public:
        result Construct(const NetConnection& netConnection, IDnsEventListener& listener);
 
        /**
-        * Initializes this instance of %Dns with the specified listener.
+        * Initializes this instance of %Dns with the specified @c listener.
         *
      * @since          2.0
         *
@@ -102,7 +102,7 @@ public:
 public:
        /**
         * Requests a DNS lookup by host name. @n
-        * This method is asynchronous.
+        * The %GetHostByName() method is asynchronous.
         *
         * @since               2.0
         *
@@ -128,7 +128,7 @@ public:
 
        /**
         * Requests a DNS lookup by IP address. @n
-        * This method is asynchronous.
+        * The %GetHostByAddress() method is asynchronous.
         *
         * @since               2.0
         *
old mode 100755 (executable)
new mode 100644 (file)
index ada299a..04cd729
@@ -67,7 +67,7 @@ protected:
 protected:
        /**
         * Writes the message body. @n
-        * This method can be called several times consecutively. All the message bodies are stored in the queue.
+        * The %WriteBody() method can be called several times consecutively. All the message bodies are stored in the queue.
         *
         * @since       2.0
         *
@@ -90,7 +90,7 @@ protected:
 protected:
        /**
         * Gets the header. @n
-        * This method is used to access the headers associated with a transaction request or response.
+        * The %GetHeader() method is used to access the headers associated with a transaction request or response.
         * The handle is obtained from either the HttpRequest or the HttpResponse objects associated with the transaction. Adding, modifying, or removing a
         * header field is done using this header handle.
         *
@@ -162,7 +162,7 @@ protected:
        //
        //  This variable is for internal use only. Using this variable can cause behavioral, security-related, and consistency-related issues in the application.
        //
-       // The header of message
+       // The header of the message
        //
        // @since       2.0
        //
old mode 100755 (executable)
new mode 100644 (file)
index 4a42fbb..a3fa1c7
@@ -231,7 +231,7 @@ public:
        result AddStringPart(const Tizen::Base::String& name, const Tizen::Base::String& text);
 
        /**
-        * Adds the string part to the %HttpMultipartEntity.
+        * Adds the string part to %HttpMultipartEntity.
         *
         * @since       2.0
         *
old mode 100755 (executable)
new mode 100644 (file)
index 4f6c4b6..273536a
@@ -309,12 +309,12 @@ public:
        result SetTimeout(int timeout);
 
        /**
-       * Sets the flag to verify server certificate. (the flag is @c HTTP_CV_FLAG_AUTOMATIC by default)
+       * Sets the flag to verify server certificate. (By default, the flag is @c HTTP_CV_FLAG_AUTOMATIC.)
        *
        * @since                2.1
        *
        * @return       An error code
-       * @param[in]    flag                                    Set the flag for certificate verification.
+       * @param[in]    flag                                    Set the flag for certificate verification
        * @exception    E_SUCCESS               The method is successful.
        * @exception    E_INVALID_STATE                 The method invoked is invalid.
        * @exception    E_SYSTEM                A system error has occurred.
old mode 100755 (executable)
new mode 100644 (file)
index 212a9a4..101a5aa
@@ -70,7 +70,7 @@ enum NetHttpSessionMode
 /**
  * @enum       HttpVersion
  *
- * Defines the HTTP version
+ * Defines the HTTP version.
  *
  * @since 2.0
  */
@@ -429,9 +429,9 @@ enum  NetHttpCookieFlag
  */
 enum  NetHttpCertificateVerificationFlag
 {
-       HTTP_CV_FLAG_AUTOMATIC,         /**< The certificate will be verified by system. If server certificate is invalid, the IHttpTransactionEventListener::OnTransactionCertVerificationRequiredN() listener is received.  */
-       HTTP_CV_FLAG_MANUAL,      /**< The certificate verification will be handled by user action when the IHttpTransactionEventListener::OnTransactionCertVerificationRequestedN() listener is received. */
-       HTTP_CV_FLAG_IGNORED,   /**< The certificate verification will be ignored. */
+       HTTP_CV_FLAG_AUTOMATIC,         /**< The certificate is verified by the system @n If server certificate is invalid, the IHttpTransactionEventListener::OnTransactionCertVerificationRequiredN() listener is received.  */
+       HTTP_CV_FLAG_MANUAL,      /**< The certificate verification is handled by user action when the IHttpTransactionEventListener::OnTransactionCertVerificationRequestedN() listener is received */
+       HTTP_CV_FLAG_IGNORED,   /**< The certificate verification is ignored */
 };
 
 } } } //Tizen::Net::Http
old mode 100755 (executable)
new mode 100644 (file)
index 8bdc683..65e62e1
@@ -39,7 +39,7 @@ class HttpTransaction;
  * @since       2.0
  *
  *  The %IHttpProgressEventListener interface is the listener for the HTTP progress events, when the HTTP message is uploaded or downloaded. In order to use this listener,
- *     the listener must be set to the HttpTransaction instance using the SetHttpProgressListener() method.
+ *     the listener must be set to the HttpTransaction instance using the HttpTransaction::SetHttpProgressListener() method.
  */
 
 class _OSP_EXPORT_ IHttpProgressEventListener
old mode 100755 (executable)
new mode 100644 (file)
index d485fb2..d6f93f7
@@ -160,13 +160,13 @@ public:
         * Called to notify when the server certificate verification has been requested.
         *
         * @since           2.1
-        * @return                      The result for certificate verification.
         *
+        * @return                      The result for certificate verification
         * @param[in]           httpSession                             The session information of the %Http transaction event
         * @param[in]           httpTransaction                 The transaction information of the %Http transaction event
-        * @param[in]           pCertList                               The server certificate chain. An IList whose element is of the type Tizen::Security::Cert::X509Certificate *.
+        * @param[in]           pCertList                               The server certificate chain @n A Tizen::Base::Collection::IList whose element is of the type Tizen::Security::Cert::X509Certificate *.
         *
-        * @remarks                     Do not delete instance of @c httpSession or @c httpTransaction in this listener before the IHttpTransactionEventListener::OnTransactionCompleted() or IHttpTransactionEventListener::OnTransactionAborted() method is called.
+        * @remarks                     Do not delete the instance of @c httpSession or @c httpTransaction in this listener before the IHttpTransactionEventListener::OnTransactionCompleted() or IHttpTransactionEventListener::OnTransactionAborted() method is called.
         * @see                         HttpTransaction::SetServerCertificateVerification()
         */
        virtual bool OnTransactionCertVerificationRequestedN(HttpSession& httpSession, HttpTransaction& httpTransaction, Tizen::Base::Collection::IList* pCertList)
index e91d23a..1c4d16e 100644 (file)
@@ -19,7 +19,7 @@
  * @file       FNetILocalDhcpServerEventListener.h
  * @brief      This is the header file for the %ILocalDhcpServerEventListener interface.
  *
- * This is the header file for the %ILocalDhcpServerEventListener interface.
+ * This header file contains the declarations of the %ILocalDhcpServerEventListener interface.
  *
  */
 #ifndef _FNET_ILOCAL_DHCP_SERVER_EVENT_LISTENER_H_
index ccca860..9775325 100644 (file)
@@ -39,7 +39,7 @@ class ManagedNetConnection;
  *
  *  The %IManagedNetConnectionEventListener interface specifies the methods used to create the notifications about the different kinds of network
  *     connection events. These events are sent only when %IManagedNetConnectionEventListener is added to the ManagedNetConnection instance, and
- *     this is done by invoking the SetManagedNetConnectionEventListener() method. A method of this interface is called when a network connection
+ *     this is done by invoking the ManagedNetConnection::SetManagedNetConnectionEventListener() method. A method of this interface is called when a network connection
  *     event is generated.
  *
  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/net/managing_network_connections.htm">Managing Network Connections</a>.
index d1d2540..a8b4fe4 100644 (file)
@@ -39,7 +39,7 @@ class NetConnection;
  *
  *  The %INetConnectionEventListener interface specifies the methods for creating the notifications about the different kinds of network
  *     connection events. These events are only sent when %INetConnectionEventListener is added to a NetConnection instance, by invoking the
- *     AddNetConnectionListener() method. When a network connection event is generated, a method of this class is called.
+ *     NetConnection::AddNetConnectionListener() method. When a network connection event is generated, a method of this class is called.
  *
  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/net/managing_network_connections.htm">Managing Network Connections</a>.
  *
old mode 100755 (executable)
new mode 100644 (file)
index 7f1b156..617b85d
@@ -134,7 +134,7 @@ public:
         * @since               2.0
         *
         * @return              An error code
-        * @param[out]  ipAddr                  A ByteBuffer object containing the raw IP address
+        * @param[out]  ipAddr                  A Tizen::Base::ByteBuffer object containing the raw IP address
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_OVERFLOW              The length of the remaining bytes of @c ipAddr is less than @c 4.
         * @remarks             This method returns the raw IP address of the %Ip4Address object. The result is in host byte order. This method writes the raw address
@@ -197,8 +197,8 @@ public:
         *
         * @return              @c true if the values match, @n
         *                              else @c false
-        * @param[in]   rhs     The other Object to be compared
-        * @see                 Object::Equals()
+        * @param[in]   rhs     The other Tizen::Base::Object to compare
+        * @see                 Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Tizen::Base::Object& rhs) const;
 
@@ -207,7 +207,7 @@ public:
         *
         * @since               2.0
         *
-        * @return      The current instance's hash value
+        * @return      The hash value of the current instance
         */
        virtual int GetHashCode(void) const;
 
index 76effab..dc023b6 100644 (file)
@@ -65,7 +65,7 @@ public:
         * @since               2.0
         *
         * @return              The address as an unsigned @c short value, in the network @c byte order
-        * @param[in]   host    The IP address to be converted, expressed in host @c byte order
+        * @param[in]   host    The IP address to convert, expressed in host @c byte order
         *
         * @see                 NetworkToHostOrder()
         */
@@ -77,7 +77,7 @@ public:
         * @since               2.0
         *
         * @return              The address as an unsigned @c long value, in the network @c byte order
-        * @param[in]   host    The IP address to be converted, expressed in host @c byte order
+        * @param[in]   host    The IP address to convert, expressed in the host @c byte order
         *
         * @see                 NetworkToHostOrder()
         */
@@ -89,7 +89,7 @@ public:
         * @since               2.0
         *
         * @return              The address as an unsigned @c short value, in the host @c byte order
-        * @param[in]   network         The IP address to be converted, expressed in the network @c byte order
+        * @param[in]   network         The IP address to convert, expressed in the network @c byte order
         *
         * @see                 HostToNetworkOrder()
         */
@@ -101,7 +101,7 @@ public:
         * @since               2.0
         *
         * @return              The address as an unsigned @c long value, in the host @c byte order
-        * @param[in]   network         The IP address to be converted, expressed in the network @c byte order
+        * @param[in]   network         The IP address to convert, expressed in the network @c byte order
         *
         * @see                         HostToNetworkOrder()
        */
@@ -123,7 +123,7 @@ public:
         * @since               2.0
         *
         * @return              An error code
-        * @param[out]  ipAddr                          A ByteBuffer object for getting the raw IP address
+        * @param[out]  ipAddr                          A Tizen::Base::ByteBuffer object for getting the raw IP address
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_ARG           The specified @c ipAddr is invalid.
         * @exception   E_OVERFLOW                      This operation has caused the memory to overflow.
index 9495329..b131155 100644 (file)
@@ -41,7 +41,7 @@ class _IpHostEntryImpl;
  * @since      2.0
  *
  *  The %IpHostEntry class associates a Domain Name %System (DNS) host name with a list of aliases and matching IP addresses. If the specified host has
- *  multiple entries in the DNS database, %IpHostEntry contains multiple IP addresses and aliases. The %IpHostEntry class is used as a helper class
+ *  multiple entries in the DNS database, %IpHostEntry contains multiple IP addresses and aliases. This class is used as a helper class
  *     with the Dns class.
  *
  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/net/domain_name_system_access.htm">Domain Name System Access</a>.
index 019cd76..89a0afc 100644 (file)
@@ -102,10 +102,10 @@ public:
         * @return              A pointer to an instance of NetConnectionInfo specifying the information about this network connection\r
         * @exception   E_SUCCESS                               The method is successful.\r
         * @exception   E_INVALID_STATE                 The network connection is inactive.\r
-        * @remarks             This method requires a %NetConnectionInfo instance reference.\r
+        * @remarks             This method requires a NetConnectionInfo instance reference.\r
         *                              %NetConnectionInfo is only available when the network connection managed by the system is active. In other states, this returns null.\r
         *                              The specific error code can be accessed using the GetLastResult() method.\r
-        * @warning     Do not delete the returned %NetConnectionInfo instance. This instance is directly referencing the internal connectionInfo of \r
+        * @warning     Do not delete the returned NetConnectionInfo instance. This instance is directly referencing the internal connectionInfo of \r
         *                              %ManagedNetConnection.\r
         */\r
        const NetConnectionInfo* GetNetConnectionInfo(void) const;\r
old mode 100755 (executable)
new mode 100644 (file)
index 904127f..3be46d9
@@ -249,9 +249,9 @@ 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 @ref 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 NET_ADDRESS_SCHEME_DYNAMIC @n
+        *                                      - 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()
         */
@@ -429,8 +429,8 @@ public:
         *
         * @return              @c true if the values match, @n
         *                              else @c false
-        * @param[in]   rhs     The other Object to compare
-        * @see                 Object::Equals()
+        * @param[in]   rhs     The other Tizen::Base::Object to compare
+        * @see                 Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Tizen::Base::Object& rhs) const;
 
old mode 100755 (executable)
new mode 100644 (file)
index 45f5865..544bba1
@@ -215,7 +215,7 @@ public:
         *
         * @since               2.0
         *
-        * @return      AIList with NetAccoundIds, which are in the registry
+        * @return      A Tizen::Base::Collection::IList with NetAccoundIds, which are in the registry
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OBJ_NOT_FOUND         The NetAccountInfo is not found in the registry.
         * @exception   E_SYSTEM                        An internal error has occurred.
@@ -228,7 +228,7 @@ public:
         *
         * @since               2.0
         *
-        * @return              AIList containing the indexes to the NetAccountInfos in the registry
+        * @return              A Tizen::Base::Collection::IList containing the indexes to the NetAccountInfos in the registry
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OBJ_NOT_FOUND         The NetAccountInfo is not found in the registry.
         * @exception   E_OUT_OF_MEMORY         The memory is insufficient.
old mode 100755 (executable)
new mode 100644 (file)
index d933b57..7873ea6
@@ -169,7 +169,7 @@ public:
         * @exception   E_SERVICE_LIMITED               A connection is already active. Therefore, cannot setup a co-existing network connection.
         * @exception   E_SYSTEM                                An internal error has occurred.
         * @exception   E_PRIVILEGE_DENIED              The application does not have the privilege to call this method.
-        * @remarks             When the network is available, after calling this method, the OnNetConnectionStarted() method of the registered
+        * @remarks             When the network is available, after calling this method, the INetConnectionEventListener::OnNetConnectionStarted() method of the registered
         *                              INetConnectionEventListener instance is called.
         * @see                 Stop()
         */
@@ -287,7 +287,7 @@ public:
         * @deprecated  This method is deprecated because it is moved to the NetConnectionManager class.
         * @since       2.0
         *
-        * @return              AIList containing indexes to NetConnectionInfo in the network, @n
+        * @return              A Tizen::Base::Collection::IList containing indexes to NetConnectionInfo in the network, @n
         *                              else @c null in case of an error or if an active connection is not found
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OUT_OF_MEMORY         The memory is insufficient.
index e9f9802..388b2b3 100644 (file)
@@ -157,7 +157,7 @@ public:
         * @since               2.0\r
         *\r
         * @return              A pointer to the IpAddress instance representing the subnet mask address of the network connection\r
-        * @remarks     In any case, check whether the %IpAddress pointer is @c null or not, because the subnet mask address field is not mandatory.\r
+        * @remarks     In any case, check whether the IpAddress pointer is @c null or not, because the subnet mask address field is not mandatory.\r
         */\r
        const IpAddress* GetSubnetMaskAddress(void) const;\r
        \r
@@ -199,8 +199,8 @@ public:
         *\r
         * @return              @c true if the values match, @n\r
         *                              else @c false\r
-        * @param[in]   rhs     The other Object to compare\r
-        * @see                 Object::Equals()\r
+        * @param[in]   rhs     The other Tizen::Base::Object to compare\r
+        * @see                 Tizen::Base::Object::Equals()\r
         */\r
        virtual bool Equals(const Tizen::Base::Object& rhs) const;\r
 \r
old mode 100755 (executable)
new mode 100644 (file)
index 967bce8..ed2c00e
@@ -157,7 +157,7 @@ public:
         *
         * @since       2.0
         *
-        * @return              AIList containing indexes to the active %NetConnectionInfo in the network, @n
+        * @return              A Tizen::Base::Collection::IList containing indexes to the active %NetConnectionInfo in the network, @n
         *                              else @c null if there is an error or if there is no active connection in the system
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OUT_OF_MEMORY         The memory is insufficient.
index 61fdf9b..c283e86 100644 (file)
@@ -153,8 +153,8 @@ public:
         *
         * @return              @c true if the values match, @n
         *                              else @c false
-        * @param[in]   rhs     The other Object to compare
-        * @see                 Object::Equals()
+        * @param[in]   rhs     The other Tizen::Base::Object to compare
+        * @see                 Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Tizen::Base::Object& rhs) const;
 
index e395bac..cd91611 100644 (file)
@@ -198,13 +198,13 @@ enum NetNapAuthType
 /**
  * @enum    NetProxyType
  *
- * Defines the proxy type of the network
+ * Defines the proxy type of the network.
  *
  * @since 2.0
  */
 enum NetProxyType
 {
-    NET_PROXY_TYPE_NONE = 0,  /**< Not use a proxy */
+    NET_PROXY_TYPE_NONE = 0,  /**< No use of proxy */
     NET_PROXY_TYPE_MANUAL     /**< Manual configuration */
 };
 
index 5467624..b4f821f 100644 (file)
@@ -41,7 +41,7 @@ class Socket;
 * @since        2.0
 *
 *                              The %ISocketEventListener interface specifies methods used for creating notifications about the different kinds of socket events.
-*                              These events are only sent out when using the socket in a non-blocking mode. A listener is registered by calling the AddSocketListener()
+*                              These events are only sent out when using the socket in a non-blocking mode. A listener is registered by calling the Socket::AddSocketListener()
 *                              method. One of these methods is called when a socket event is generated.
 *
 * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/net/sockets.htm">Sockets Guide</a>.
old mode 100755 (executable)
new mode 100644 (file)
index 73510e3..bbcab5e
@@ -331,7 +331,7 @@ public:
         * @exception        E_PRIVILEGE_DENIED                 The application does not have the privilege to call this method.
         *
         * @remarks             Starts connection to a remote peer including SSL handshaking.
-        *                              After this method is called, OnSecureSocketConnected() is called. The data is sent to and received from the remote
+        *                              After this method is called, ISecureSocketEventListener::OnSecureSocketConnected() is called. The data is sent to and received from the remote
         *                              device using Send() and Receive() respectively. If the Bind() method is not called before calling this
         *                              method, the underlying service provider assigns the local network address and port number.
         */
@@ -355,7 +355,7 @@ public:
         * @since        2.0
         *
         * @return              An error code
-        * @param[in]   buffer                                          An instance of ByteBuffer that contains the data to send
+        * @param[in]   buffer                                          An instance of Tizen::Base::ByteBuffer that contains the data to send
         * @exception   E_SUCCESS                                       The method is successful.
         * @exception   E_INVALID_SOCKET                        The secure socket is invalid.
         * @exception   E_INVALID_STATE                         The secure socket is not in a valid state.
@@ -425,7 +425,7 @@ public:
         * @since        2.0
         *
         * @return              An error code
-        * @param[out]  buffer                                          An instance of ByteBuffer that is the storage location for the received data
+        * @param[out]  buffer                                          An instance of Tizen::Base::ByteBuffer that is the storage location for the received data
         * @exception   E_SUCCESS                                       The method is successful.
         * @exception   E_INVALID_SOCKET                        The secure socket is invalid.
         * @exception   E_INVALID_STATE                         The secure socket is not in a valid state.
@@ -530,7 +530,7 @@ public:
 
        /**
        * Accepts an incoming connection. @n
-       * This method extracts the first connection from the queue of pending connections, and
+       * The %AcceptN() method extracts the first connection from the queue of pending connections, and
        * creates a new secure socket with the same socket type, protocol type, and protocol family
        * as the listening secure socket.
        *
old mode 100755 (executable)
new mode 100644 (file)
index 8969e22..14ccc0b
@@ -226,7 +226,7 @@ public:
        * @exception            E_SYSTEM                                        A system error has occurred.
        * @exception        E_PRIVILEGE_DENIED                  The application does not have the privilege to call this method.
        * @remarks                      If the socket is a connectionless socket (that is, of the type NET_SOCKET_TYPE_DATAGRAM), this method fails.
-       *                                       After this method is called, OnSocketConnected() is called. the data can be sent to and received from the remote device using Send() and Receive() respectively.
+       *                                       After this method is called, ISocketEventListener::OnSocketConnected() is called. the data can be sent to and received from the remote device using Send() and Receive() respectively.
        *                                       If a connection-oriented protocol is used and Bind() is not called before calling this method, the underlying service provider
        *                                       assigns the local network address and port number.
        */
@@ -250,7 +250,7 @@ public:
        * @since        2.0
        *
        * @return               An error code
-       * @param[in]    buffer                                          An instance of ByteBuffer that contains the data to be sent
+       * @param[in]    buffer                                          An instance of Tizen::Base::ByteBuffer that contains the data to send
        * @exception    E_SUCCESS                                       The method is successful.
        * @exception    E_INVALID_SOCKET                        The socket is invalid.
        * @exception    E_INVALID_STATE                         The socket is not in a valid state.
@@ -331,7 +331,7 @@ public:
     * @endif
        *
        * @return                       An error code
-       * @param[in]            buffer                                          An instance of ByteBuffer containing the data to send
+       * @param[in]            buffer                                          An instance of Tizen::Base::ByteBuffer containing the data to send
        * @param[in]            remoteEndPoint                          An instance of NetEndPoint representing the destination for the data
        * @exception            E_SUCCESS                                       The method is successful.
        * @exception            E_INVALID_SOCKET                        The socket is invalid.
@@ -421,7 +421,7 @@ public:
        * @since        2.0
        *
        * @return               An error code
-       * @param[out]   buffer                                          An instance of ByteBuffer that is the storage location for the received data
+       * @param[out]   buffer                                          An instance of Tizen::Base::ByteBuffer that is the storage location for the received data
        * @exception    E_SUCCESS                                       The method is successful.
        * @exception    E_INVALID_SOCKET                        The socket is invalid.
        * @exception    E_INVALID_STATE                         The socket is not in a valid state.
@@ -485,7 +485,7 @@ public:
     * @endif
        *
        * @return               An error code
-       * @param[out]   buffer                                          An instance of ByteBuffer that is the storage location for the received data
+       * @param[out]   buffer                                          An instance of Tizen::Base::ByteBuffer that is the storage location for the received data
        * @param[out]   remoteEndPoint                          The NetEndPoint of the remote server
        * @exception    E_SUCCESS                                       The method is successful.
        * @exception    E_INVALID_SOCKET                        The socket is invalid.
index 7c54e1c..79a805c 100644 (file)
@@ -230,8 +230,8 @@ public:
         * @since               2.0
         * @return              @c true if the values match, @n
         *                      else @c false
-        * @param[in]   obj     The other Object to be compared
-        * @see                 Object::Equals()
+        * @param[in]   obj     The other Tizen::Base::Object to compare
+        * @see                 Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Tizen::Base::Object& obj) const;
 
index ccad7f3..84b793c 100644 (file)
@@ -124,8 +124,8 @@ public:
         *
         * @return              @c true if the values match, @n
         *                      else @c false
-        * @param[in]   obj     The other Object to be compared
-        * @see                 Object::Equals()
+        * @param[in]   obj     The other Tizen::Base::Object to compare
+        * @see                 Tizen::Base::Object::Equals()
         */
        virtual bool Equals(const Tizen::Base::Object& obj) const;
 
old mode 100755 (executable)
new mode 100644 (file)
index 660deb5..9d464c7
@@ -84,9 +84,9 @@ public:
        * @privilege            http://tizen.org/privilege/socket
        *
        * @return                       An error code
-       * @param[in,out]        pCheckRead                                      AIList of Socket instances to check for readability
-       * @param[in,out]        pCheckWrite                             AIList of Socket instances to check for writability
-       * @param[in,out]        pCheckError                             AIList of Socket instances to check for errors
+       * @param[in,out]        pCheckRead                                      A Tizen::Base::Collection::IList of Socket instances to check for readability
+       * @param[in,out]        pCheckWrite                             A Tizen::Base::Collection::IList of Socket instances to check for writability
+       * @param[in,out]        pCheckError                             A Tizen::Base::Collection::IList of Socket instances to check for errors
        * @param[in]            microSeconds                            The time to wait for a response, in microseconds
        * @exception            E_SUCCESS                                       The method is successful.
        * @exception            E_INVALID_SOCKET                        The socket is invalid.
@@ -99,7 +99,7 @@ public:
        * @exception            E_SYSTEM                                        A system error has occurred.
        * @exception        E_PRIVILEGE_DENIED                  The application does not have the privilege to call this method.
        * @remarks              This method determines the status of one or more
-       *               Socket instances. There must be at least one socket in an IList
+       *               Socket instances. There must be at least one socket in an Tizen::Base::Collection::IList
        *               before this method is used.
        *               To check sockets for readability and writability use @c pCheckRead and @c pCheckWrite of type
        *                               %IList respectively by calling this method.