()
| 334 | } |
| 335 | |
| 336 | public int getFileCountInNUS() { |
| 337 | int i = 0; |
| 338 | for(FEntry f: getFileEntries()){ |
| 339 | if(!f.isDir() && f.isInNUSTitle()) |
| 340 | i++; |
| 341 | } |
| 342 | return i; |
| 343 | } |
| 344 | |
| 345 | public String notInNUS() { |
| 346 | StringBuilder sb = new StringBuilder(); |
no test coverage detected