1 package eu.fbk.dkm.premon.premonitor;
2
3 import org.openrdf.model.Resource;
4 import org.openrdf.model.URI;
5
6 import javax.annotation.Nullable;
7 import java.util.List;
8
9
10
11
12
13 public class ComplexLemma {
14
15 String goodLemma;
16 String uriLemma;
17 List<String> tokens;
18 @Nullable List<String> pos;
19 String mainPos;
20 Resource lexiconURI;
21 URI lexicalEntryURI;
22
23 public ComplexLemma(String goodLemma, String uriLemma, List<String> tokens, List<String> pos, String mainPos, Resource lexiconURI,
24 URI lexicalEntryURI) {
25 this.goodLemma = goodLemma;
26 this.uriLemma = uriLemma;
27 this.tokens = tokens;
28 this.pos = pos;
29 this.mainPos = mainPos;
30 this.lexiconURI = lexiconURI;
31 this.lexicalEntryURI = lexicalEntryURI;
32 }
33
34 public String getUriLemma() {
35 return uriLemma;
36 }
37
38 public String getGoodLemma() {
39 return goodLemma;
40 }
41
42 public String getMainPos() {
43 return mainPos;
44 }
45
46 public URI getLexicalEntryURI() {
47 return lexicalEntryURI;
48 }
49 }