| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Extent |
|
| 1.0;1 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | ||
| 3 | package org.galagosearch.core.parse; | |
| 4 | ||
| 5 | public class Extent { | |
| 6 | 0 | public Extent(String text, int begin, int end) { |
| 7 | 0 | this.text = text; |
| 8 | 0 | this.begin = begin; |
| 9 | 0 | this.end = end; |
| 10 | 0 | } |
| 11 | String text; | |
| 12 | int begin; | |
| 13 | int end; | |
| 14 | } |