KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > process > DSOLinkedJavaProcessStarter


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.process;
5
6 /**
7  * A process starter variant that will use the system classloader to instaniate the desired target main class
8  */

9 public class DSOLinkedJavaProcessStarter {
10
11   public static void main(String JavaDoc args[]) throws Exception JavaDoc {
12     LinkedJavaProcessStarter.main(args, true);
13   }
14   
15 }
16
Popular Tags