TEIDeepParseTreeImpl.java
953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package ipipan.clarin.tei.impl.entities;
import ipipan.clarin.tei.api.entities.TEIDeepParseChildren;
import ipipan.clarin.tei.api.entities.TEIDeepParseTree;
import java.util.List;
/**
*
* @author mlenart
*/
class TEIDeepParseTreeImpl extends TEIAbstractEntity implements
TEIDeepParseTree {
private String id;
private String type;
private String tag;
private List<TEIDeepParseChildren> childrenVariants;
TEIDeepParseTreeImpl(String id, String type, String tag,
List<TEIDeepParseChildren> childrenVariants) {
super(id);
this.type = type;
this.tag = tag;
this.childrenVariants = childrenVariants;
}
@Override
public String getId() {
return id;
}
@Override
public String getType() {
return type;
}
@Override
public String getTag() {
return tag;
}
@Override
public List<TEIDeepParseChildren> getChildrenVariants() {
return childrenVariants;
}
@Override
public boolean isTerminal() {
return false;
}
}