owner.tcpHandler = new TcpSrvHandler(1235);
((TcpSrvHandler)owner.tcpHandler).start();
}
else{
System.out.println("CLIENT");
owner.tcpHandler = new TcpCntHandler();
((TcpCntHandler)owner.tcpHandler).start("127.0.0.1", 1235);
}
}
owner.tcpHandler.setMessageHandler(owner);