| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Handler |
|
| 0.0;0 |
| 1 | package org.webslinger.commons.vfs.handlers; | |
| 2 | ||
| 3 | import java.util.Collection; | |
| 4 | ||
| 5 | import org.apache.commons.vfs.FileSystemException; | |
| 6 | ||
| 7 | public interface Handler { | |
| 8 | void excludeNames(Collection<String> names) throws FileSystemException; | |
| 9 | } |