AnnotatedTree.Layer.DependencyLayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AnnotatedTree Show documentation
Show all versions of AnnotatedTree Show documentation
Annotated constituency treebank library
package AnnotatedTree.Layer;
public class DependencyLayer extends SingleWordLayer {
/**
* Constructor for the dependency layer. Dependency layer stores the dependency information of a node.
* @param layerValue Value of the dependency layer.
*/
public DependencyLayer(String layerValue) {
layerName = "dependency";
setLayerValue(layerValue);
}
}