blob: c54a3d817e7cae6e4906d226424539e2ccea2566 [file] [log] [blame]
package de.ids_mannheim.korap.response.match;
/**
* Class for relational highlights.
*/
public class Relation {
public int refStart;
public int refEnd;
public String annotation;
public Relation (String annotation, int refStart, int refEnd) {
this.annotation = annotation;
this.refStart = refStart;
this.refEnd = refEnd;
};
};