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

/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphicsEnvironment.java59 * The headless state of the Toolkit and GraphicsEnvironment
61 private static Boolean headless; field in class:GraphicsEnvironment
64 * The headless state assumed by default
144 * @return warning message if headless state is assumed by default;
149 if (headless == null) {
158 * @return the value of the property "java.awt.headless"
162 if (headless == null) {
166 String nm = System.getProperty("java.awt.headless");
171 headless = defaultHeadless = Boolean.FALSE;
177 headless
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp2807 // If we are running in a headless jre, force java.awt.headless property
2809 // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
2811 const char* headless = Arguments::get_property("java.awt.headless"); local
2812 if (headless == NULL) {
2815 if (!add_property("java.awt.headless=true")) {
2820 strcpy(buffer, "java.awt.headless=");

Completed in 1167 milliseconds