????

Your IP : 216.73.216.14


Current Path : C:/opt/msys64/ucrt64/share/doc/gettext/examples/hello-java-swing/m4/
Upload File :
Current File : C:/opt/msys64/ucrt64/share/doc/gettext/examples/hello-java-swing/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);
  }
}