AnnotatedTree.Layer.TurkishWordLayer 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
The newest version!
package AnnotatedTree.Layer;
public class TurkishWordLayer extends TargetLanguageWordLayer {
/**
* Constructor for the word layer for Turkish language. Sets the surface form.
* @param layerValue Value for the word layer.
*/
public TurkishWordLayer(String layerValue){
super(layerValue);
layerName = "turkish";
}
}