| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ExclusionHandler |
|
| 0.0;0 | ||||
| ExclusionHandler$NullHandler |
|
| 0.0;0 |
| 1 | package org.webslinger.commons.vfs.handlers; | |
| 2 | ||
| 3 | import java.util.Collection; | |
| 4 | ||
| 5 | import org.apache.commons.vfs.FileSelectInfo; | |
| 6 | import org.apache.commons.vfs.FileSelector; | |
| 7 | import org.apache.commons.vfs.FileSystemException; | |
| 8 | ||
| 9 | public interface ExclusionHandler extends Handler { | |
| 10 | 3 | public final class NullHandler implements ExclusionHandler { |
| 11 | public void excludeNames(Collection<String> names) { | |
| 12 | 14 | } |
| 13 | } | |
| 14 | } |