annotate mxtool/ClasspathDump.java @ 21097:391f94d4d23f

Move MatchProcessor and HotSpotVMConfigPorcessor to their own projects
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 23 Apr 2015 14:48:52 +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 }