| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| IndexElement |
|
| 1.0;1 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | package org.galagosearch.core.index; | |
| 3 | ||
| 4 | import java.io.OutputStream; | |
| 5 | ||
| 6 | /** | |
| 7 | * | |
| 8 | * @author trevor | |
| 9 | */ | |
| 10 | public interface IndexElement { | |
| 11 | public byte[] key(); | |
| 12 | public long dataLength(); | |
| 13 | public void write(final OutputStream stream) throws java.io.IOException; | |
| 14 | } |