git://git.nikiroo.be
/
fanfix.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
#47 setfont only in swing thread
[fanfix.git]
/
examples
/
HelloWorld.java
1
import
jexer
.
TApplication
;
2
3
public class
HelloWorld
{
4
5
public static void
main
(
String
[]
args
)
throws
Exception
{
6
TApplication app
=
new
TApplication
(
TApplication
.
BackendType
.
XTERM
);
7
app
.
addToolMenu
();
8
app
.
addFileMenu
();
9
app
.
addWindowMenu
();
10
app
.
run
();
11
}
12
}