All pastes #1836972 Raw Edit

Calender

public java v1 · immutable
#1836972 ·published 2010-03-13 13:13 UTC
rendered paste body
/* * To change this template, choose Tools | Templates * and open the template in the editor. */import javax.microedition.midlet.*;import java.util.TimeZone;import javax.microedition.lcdui.*;public class CalenderMidlet extends MIDlet{    private Display display;    private Form form;    private DateField calender;    public CalenderMidlet()    {        calender = new DateField("Can modify Date and time: ",DateField.DATE_TIME,TimeZone.getDefault());    }    public void startApp()     {        display = Display.getDisplay(this);        form = new Form ("Calender");        form.append(calender);        display.setCurrent(form);    }    public void pauseApp(){}    public void destroyApp(boolean unconditional)     {        notifyDestroyed();    }}