1 21 22 package org.apache.derbyTesting.functionTests.harness; 23 24 25 public class RunIJ implements Runnable  27 { 28 29 32 public RunIJ(String args[]) 33 { 34 ijArgs=args; 35 } 36 37 String ijArgs[]; 38 39 public void run() 40 { 41 synchronized (this) 42 { 43 try 44 { 45 org.apache.derby.tools.ij.main(ijArgs); 46 } 47 catch (Exception e) 48 { 49 System.out.println("RunIJ --> " + e); 50 e.printStackTrace(); 51 } 52 } 53 } 54 } 55 | Popular Tags |