1 21 22 package org.apache.derbyTesting.functionTests.tests.demo; 23 24 25 28 public class RunClassPathTester { 29 30 public static void main(String args[]) { 31 32 String arg2 = "embedded"; 33 String env = System.getProperty("theframework", "embedded"); 34 String [] newargs = new String [3]; 35 newargs[0] = "-cp"; 36 newargs[1] = arg2; 37 newargs[2] = "SimpleApp.class"; 38 39 org.apache.derby.tools.sysinfo.main(newargs); 40 } 41 42 private RunClassPathTester() {} 44 } 45 | Popular Tags |