Searched defs:JDK (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DJDK.java44 * A simple class that fills a hole in the JDK. It parses out the version numbers
45 * of the JDK we are running.
51 public final class JDK { class
53 private JDK() { method in class:JDK
58 * See if the current JDK is legal for running GlassFish
59 * @return true if the JDK is >= 1.6.0
85 return "major: " + JDK.getMajor() +
86 "\nminor: " + JDK.getMinor() +
87 "\nsubminor: " + JDK.getSubMinor() +
88 "\nupdate: " + JDK
[all...]

Completed in 383 milliseconds