.NET
javatui.txt
Associated article: A Text UI for the Java AWT
Tags: .NET
Published source code accompanying the article by Stuart D. Gathman in which he presents a text user-interface toolkit for the Java AWT that allows ASCII terminals to run Java applications on UNIX servers. In addition, the toolkit enables a multiuser Virtual Machine (VM). Also see JAVATUI.ZIP.
_A Text UI for the Java AWT_
by Stuart D. Gathman
Listing One
class SomeClass {
static void main(String args[]) {
Properties props = System.getProperties();
props.put("awt.toolkit","bmsi.tui.TUIKit");
}
import java.awt.*;
class TUIFrame ...


