Package logicLayer

Examples of logicLayer.User


public class ClientChatThread extends Thread
{
  private User user;
  private ClassroomsManager cm;
  public ClientChatThread(String username, Socket clientSocket, DataOutputStream os, DataInputStream is, ClassroomsManager cm) {
    user = new User(username, clientSocket, os, is);
    this.cm=cm;
  }
View Full Code Here

TOP

Related Classes of logicLayer.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.