Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Krill
/
f0171c505c8b0a8f8919ce8d23b3efbfb17b06fc
/
.
/
src
/
main
/
java
/
de
/
ids_mannheim
/
korap
/
match
/
Relation.java
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
;
};
};