| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Source |
|
| 0.0;0 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | ||
| 3 | package org.galagosearch.tupleflow; | |
| 4 | ||
| 5 | /** | |
| 6 | * An object that can generate objects of type T | |
| 7 | * @author trevor | |
| 8 | */ | |
| 9 | public interface Source<T> extends Step { | |
| 10 | public void setProcessor(Step processor) throws IncompatibleProcessorException; | |
| 11 | } |