Package server

Examples of server.ServerController


   * @param port De gebruikte poort (6667)
   */
  public boolean connect (String server, String login, int port) throws IOException
  {
    this.login = login;
    serverController = new ServerController(server, login, port);
   
    if(serverController.getSocket() != null)
    {
      serverController.getServerReader().addObserver(this);
      return true;
View Full Code Here

TOP

Related Classes of server.ServerController

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.