| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| InputStep |
|
| 1.0;1 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | package org.galagosearch.tupleflow.execution; | |
| 3 | ||
| 4 | /** | |
| 5 | * Represents an input step in a TupleFlow stage. | |
| 6 | * | |
| 7 | * @author trevor | |
| 8 | */ | |
| 9 | public class InputStep extends Step { | |
| 10 | String id; | |
| 11 | ||
| 12 | 0 | public InputStep(String id) { |
| 13 | 0 | this.id = id; |
| 14 | 0 | } |
| 15 | ||
| 16 | 0 | public InputStep(FileLocation location, String id) { |
| 17 | 0 | this.id = id; |
| 18 | 0 | this.location = location; |
| 19 | 0 | } |
| 20 | ||
| 21 | public String getId() { | |
| 22 | 0 | return id; |
| 23 | } | |
| 24 | } |