Beispiel #1
0
 public Wrapper(User user,Color color,Communicator communicator,Chatroom chatroom)
 {
     this.user = user;
     this.color = color;
     this.communicator = communicator;
     this.chatroom = chatroom;
 }
Beispiel #2
0
 public Wrapper(User user,Socket socket)
 {
     this.user = user;
     this.communicator = new Communicator(socket);
 }