| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| FileMonitor |
|
| 0.0;0 | ||||
| FileMonitor$FileListener |
|
| 0.0;0 |
| 1 | package org.webslinger.io; | |
| 2 | ||
| 3 | import java.io.File; | |
| 4 | import java.io.IOException; | |
| 5 | ||
| 6 | public interface FileMonitor extends Monitor<File, FileMonitor.FileListener> { | |
| 7 | void add(File item, FileListener listener) throws IOException; | |
| 8 | void remove(File item, FileListener listener) throws IOException; | |
| 9 | interface FileListener extends Monitor.Listener<File> { | |
| 10 | } | |
| 11 | } |