Form with a Gauge
Description:
The following code creates a Form with a Gauge.
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class Gauge_ex extends MIDlet
{
Display display=Display.getDisplay(this);
public void startApp()
{
Form form = new Form(“Gauge example");
//Gauge(label,interaction,maxValue,InitialValue)
Gauge gauge = new Gauge("Gauge example", false, 20, 4);
form.append(gauge);
display.setCurrent(form);
}
}

