parentApplet.appOutput(" UniSelectList.getList(JAVA_DEMO_LIST)\n");
// load the select list we previously generated
parentApplet.demoSelect.getList("JAVA_DEMO_LIST");
parentApplet.appOutput(" UniSelectList.readList()\n");
// read the list into a string and then output it
UniString result = parentApplet.demoSelect.readList();
parentApplet.appOutput(" " + result.toString() + "\n");
UniDynArray dynResult = new UniDynArray(result);
parentApplet.appOutput(" The English version!\n");
// output the select list in a formatted form
for (int i = 0; i < dynResult.count(); i++) {
parentApplet.appOutput(" " + dynResult.extract(i).toString() + ",");