| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CachingLister |
|
| 0.0;0 |
| 1 | package org.webslinger.commons.vfs; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | import java.util.Set; | |
| 5 | ||
| 6 | import org.apache.commons.vfs.FileObject; | |
| 7 | ||
| 8 | public interface CachingLister { | |
| 9 | Set<String> getNames() throws IOException; | |
| 10 | FileObject getDir() throws IOException; | |
| 11 | } | |
| 12 |