blob: fc34b23980f8a205d18180ad7b0a46935e4fb94a [file] [log] [blame]
package de.ids_mannheim.korap.response.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;
};
};