All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.fbk.dkm.pikes.resources.reader.DataTextNode Maven / Gradle / Ivy

Go to download

A collection of Java classes for accessing and querying a number of NLP resources.

The newest version!
/**
 * 
 */
package eu.fbk.dkm.pikes.resources.reader;

public class DataTextNode extends DataNode {
	public String text;
	DataTextNode(String text) {
		this.text = text;
	}

	public String toString() {
		return "[TEXT: " + text + "]";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy