Package test.global

Source Code of test.global.mainServeur

package test.global;

import java.rmi.RemoteException;

import serveur.Serveur;

public class mainServeur {

  /**
   * @param args
   */
  public static void main(String[] args) {
    try {
      new Serveur();
    } catch (RemoteException e) {
      e.printStackTrace();
    }
  }

}
TOP

Related Classes of test.global.mainServeur

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.