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