()
| 111 | } |
| 112 | |
| 113 | private void loadRecentList() { |
| 114 | recentList=new Vector(10); |
| 115 | try { |
| 116 | DataInputStream is=NvStorage.ReadFileRecord(ti.id, 0); |
| 117 | |
| 118 | try { |
| 119 | while (true) recentList.addElement(is.readUTF()); |
| 120 | } catch (EOFException e) { is.close(); is=null; } |
| 121 | } catch (Exception e) { } |
| 122 | } |
| 123 | |
| 124 | public void saveRecentList() { |
| 125 | DataOutputStream os=NvStorage.CreateDataOutputStream(); |
no test coverage detected