JVM Languages
pim.txt
Associated article: Getting Personal with J2ME's PIM API
Tags: JVM Languages
Published source code accompanying the article by Tom Thompson in which he examines J2ME's PIM API. The JSR 75 Personal Information Management and JSR 75 FileConnection packages changes all this. Also see PIM.ZIP.
Getting Personal with J2ME's PIM API
by Tom Thompson
Listing One
PIM pim;
try {
ContactList cl = (ContactList)
PIM.getInstance().openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);
} catch (Exception ex) {
System.out.println ("Error on getting listn");
} // end ...


