| Current Path : /usr/local/share/doc/gettext/examples/hello-java-awt/m4/ |
| Current File : //usr/local/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.java |
// Test for working AWT.
// This file is in the public domain.
/**
* @author Bruno Haible
*/
public class TestAWT {
public static void main (String[] args) {
try {
java.awt.Toolkit.getDefaultToolkit();
} catch (Throwable e) {
System.exit(1);
}
System.exit(0);
}
}