Examples of JXoFrame


Examples of client.gui.JXoFrame

     * nomFichier = args[2]; } System.out.println(nomMachine);
     * System.out.println(port); System.out.println(nomFichier);
     */

    // Lancement du GUI
    JXoFrame guiJXo = new JXoFrame();
    JxoClient client;
    try {
      // recuperation des parametres du gui.
      String hostName = guiJXo.getHostName();
      String userName = guiJXo.getUserName();
     
      client = new JxoClient(hostName, userName, guiJXo);
      /*
       * Conteneur c = new Conteneur(TypeConteneur.JOUEUR, new
       * Joueur("Tito")); client.envoyerConteneur(c);
View Full Code Here

Examples of client.gui.JXoFrame

   * @param args
   */
  public static void main(String[] args) {

    // Lancement du GUI
    JXoFrame guiJXo = new JXoFrame();

    try {
      // recuperation des parametres du gui.
      String hostName = guiJXo.getHostName();
      String userName = guiJXo.getUserName();
//      if(!hostName.equals("") && !userName.equals("")){
      JxoClient client = new JxoClient(hostName, userName, guiJXo);
        // et on reste bloque ici jusqu'a la fin du monde...
//      }
    } catch (UnknownHostException uhe) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.