JVM Languages
jwaba.txt
Associated article: Java and the Waba Toolkit
Tags: Open Source Mobile JVM Languages
Published source code accompanying the article by Al Williams in which he examines Java and the Waba toolkit, which together lets you develop powerful applications for handhelds such as the PalmPilot or Windows CE-based systems.
Java and the Waba Toolkit
by Al Williams
Listing One
// RPN calculator for CE or Palm
// Al Williams
import waba.ui.*;
import waba.fx.*;
import waba.util.*;
public class alcalc extends MainWindow
{
final int stacksize=4; // Set stack depth
// Buttons and ...


