AnnotatedTree.Layer.EnglishWordLayer 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 EnglishWordLayer extends SourceLanguageWordLayer {
/**
* Constructor for the word layer for English language. Sets the surface form.
* @param layerValue Value for the word layer.
*/
public EnglishWordLayer(String layerValue){
super(layerValue);
layerName = "english";
}
}