| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| WorkAreaFactory |
|
| 0.0;0 |
| 1 | package org.webslinger.modules; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | import java.util.Collection; | |
| 5 | ||
| 6 | import org.webslinger.Root; | |
| 7 | ||
| 8 | public interface WorkAreaFactory<T extends WorkArea> extends Root { | |
| 9 | T create() throws IOException; | |
| 10 | T join(String name) throws IOException; | |
| 11 | Collection<? extends T> getWorkAreas() throws IOException; | |
| 12 | } |