1 // GetBootClassPath.java, created Fri Aug 16 16:04:04 2002 by joewhaley 2 // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu> 3 // Licensed under the terms of the GNU LGPL; see COPYING for details. 4 package joeq.Main; 5 6 /* 7 * @author John Whaley <jwhaley@alum.mit.edu> 8 * @version $Id: GetBootClassPath.java 1448 2004-03-09 01:49:01Z jwhaley $ 9 */ 10 public abstract class GetBootClassPath { 11 public static void main (String args[]) { 12 for (int i=0; i<args.length; ++i) { 13 System.out.print(args[i]+System.getProperty("path.separator")); 14 } 15 System.out.print(System.getProperty("sun.boot.class.path")); 16 //System.out.print(System.getProperty("path.separator")+System.getProperty("java.class.path")); 17 } 18 }