| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| OrderedWriter |
|
| 0.0;0 |
| 1 | // BSD License (http://galagosearch.org/license) | |
| 2 | ||
| 3 | package org.galagosearch.tupleflow; | |
| 4 | ||
| 5 | import java.io.IOException; | |
| 6 | ||
| 7 | 0 | public abstract class OrderedWriter<T> implements Processor<T> { |
| 8 | public abstract void process(T object) throws IOException; | |
| 9 | } |