()
| 270 | } |
| 271 | |
| 272 | public static void saveToStorage(){ |
| 273 | DataOutputStream outputStream=NvStorage.CreateDataOutputStream(); |
| 274 | try { |
| 275 | for (Enumeration r=colorsContainer.elements(); r.hasMoreElements();) { |
| 276 | ColorItem c=(ColorItem)r.nextElement(); |
| 277 | outputStream.writeInt(c.color); |
| 278 | } |
| 279 | } catch (IOException e) { } |
| 280 | NvStorage.writeFileRecord(outputStream, "ColorDB", 0, true); |
| 281 | } |
| 282 | |
| 283 | public static String getSkin(){ |
| 284 | StringBuffer body=new StringBuffer(); |
no test coverage detected