annotate mxtool/ClasspathDump.java @ 21997:c07e64ecb528

Update SL copyright headers to use UPL
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 16 Jul 2015 15:50:46 +0200
parents a6bd486b1b44
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14914
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
1 public class ClasspathDump {
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
2 public static void main(String[] args) {
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
3 System.out.print(System.getProperty("sun.boot.class.path"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
4 System.out.print("|");
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
5 System.out.print(System.getProperty("java.ext.dirs"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
6 System.out.print("|");
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
7 System.out.print(System.getProperty("java.endorsed.dirs"));
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
8 }
a6bd486b1b44 Extend JavaConfig bootclasspath detection to detect extdirs and endorseddirs
Gilles Duboscq <duboscq@ssw.jku.at>
parents:
diff changeset
9 }