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