X-Git-Url: https://git.piment-noir.org/?p=TD_SR.git;a=blobdiff_plain;f=TD2%2FIHM%2FSocketClient.java;h=daa77ee1bef7a54608a7ad44ead683d4f45bad9c;hp=d6db15dd2c2f609f4db5126777828a1314841c81;hb=f8c647b503f84d4a8fc9ff0564f8bcfa989f3020;hpb=1a8b0826b5021061a361550b8a83cde7c25955cb diff --git a/TD2/IHM/SocketClient.java b/TD2/IHM/SocketClient.java index d6db15d..daa77ee 100644 --- a/TD2/IHM/SocketClient.java +++ b/TD2/IHM/SocketClient.java @@ -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();