コード例 #1
0
ファイル: Init.java プロジェクト: Canardou/ptut
 /** Constructeur de Init */
 public Init() {
   ThreadRobot tRobot = new ThreadRobot();
   ThreadCom tCom = new ThreadCom(tRobot);
   this.initTest(tRobot);
   tRobot.start();
   tCom.start();
 }