TD2: Fix some comments.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 16 Mar 2018 19:56:00 +0000 (20:56 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 16 Mar 2018 19:56:00 +0000 (20:56 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TD2/IHM/SocketClient.java
TD2/client/SocketClient.java

index d6db15dd2c2f609f4db5126777828a1314841c81..daa77ee1bef7a54608a7ad44ead683d4f45bad9c 100644 (file)
@@ -95,7 +95,7 @@ public class SocketClient {
 
     /**
      * Send an object message on the opened client socket
-     * @param msg a string containing the message to send
+     * @param oMsg an object containing the message to send
      */
     public void sendoMsg(Message oMsg) throws IOException {
         oEcriture.writeObject(oMsg);
@@ -115,7 +115,7 @@ public class SocketClient {
 
     /**
      * Receive an object message sent on the opened client socket
-     * @return a string containing the received message
+     * @return an object containing the received message
      */
     public Message receiveoMsg() throws IOException, ClassNotFoundException {
         return (Message)oLecture.readObject();
index 15ed27935892cd325019bb81689a6ce69037323a..b038475de13bedc2abdd6109610cc9a7459d83d9 100644 (file)
@@ -95,7 +95,7 @@ public class SocketClient {
 
     /**
      * Send an object message on the opened client socket
-     * @param msg a string containing the message to send
+     * @param oMsg an object containing the message to send
      */
     public void sendoMsg(Message oMsg) throws IOException {
         oEcriture.writeObject(oMsg);
@@ -115,7 +115,7 @@ public class SocketClient {
 
     /**
      * Receive an object message sent on the opened client socket
-     * @return a string containing the received message
+     * @return a object containing the received message
      */
     public Message receiveoMsg() throws IOException, ClassNotFoundException {
         return (Message)oLecture.readObject();