/* * To change this template, choose Tools | Templates * and open the template in the editor. */ import javax.microedition.midlet.*; import javax.microedition.lcdui.*; /** * @author turing */ public class Kaart extends MIDlet { KaardiLouend louend=new KaardiLouend(); public void startApp() { Display.getDisplay(this).setCurrent(louend); } public void pauseApp() { } public void destroyApp(boolean unconditional) { try{ louend.rs.closeRecordStore(); } catch (Exception e){System.out.println(e.getMessage());} } }