()
| 86 | } |
| 87 | |
| 88 | public Date getDate() { |
| 89 | try { |
| 90 | SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.getDefault()); |
| 91 | return format.parse(getModified()); |
| 92 | } catch (Exception e) { |
| 93 | return new Date(); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | public boolean isFolder() { |
| 98 | return getType() == 1; |
no test coverage detected