repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gettext
/
gettext-tools
/
examples
/
hello-java-awt
/
m4
/
TestAWT.java
blob
21515fcfd73a3e388dcdda8deac1ed73ff96e2ea
1
// Test for working AWT.
2
public class
TestAWT
{
3
public static void
main
(
String
[]
args
) {
4
try
{
5
java
.
awt
.
Toolkit
.
getDefaultToolkit
();
6
}
catch
(
Throwable e
) {
7
System
.
exit
(
1
);
8
}
9
System
.
exit
(
0
);
10
}
11
}