コード例 #1
0
ファイル: BaseTest.java プロジェクト: chrreisinger/antlr4
 /** wait for the thread to finish */
 public void join() throws InterruptedException {
   sucker.join();
 }
コード例 #2
0
ファイル: BaseTest.java プロジェクト: chrreisinger/antlr4
 public void start() {
   sucker = new Thread(this);
   sucker.start();
 }