summaryrefslogtreecommitdiff
path: root/gettext-tools/examples/hello-java-swing/m4/TestAWT.java
blob: 5c403225ebf21c215615e4b144b8e430f861a3a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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);
  }
}