1   /**
2    * 
3    */
4   package eu.fbk.dkm.pikes.resources.reader;
5   
6   import java.util.ArrayList;
7   
8   public class LKAnnotationEntity {
9   	public int cstart = -1, cend = -1;
10  	//String id = null;
11  	public ArrayList<LKAnnotationEntity> referred;
12  	public LKAnnotationEntity from;
13  	public LKAnnotationEntity to;
14  
15  	//String label = null;
16  	public DataElementNode data = null;
17  
18  	//TOP uimaObject = null;
19  
20  	public String localURI;
21  
22  	@Override
23  	public String toString() {
24  		return "LKAnnotationEntity{" +
25  				"cstart=" + cstart +
26  				", cend=" + cend +
27  				", referred=" + referred +
28  				", from=" + from +
29  				", to=" + to +
30  				", data=" + data +
31  				", localURI='" + localURI + '\'' +
32  				'}';
33  	}
34  }