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

it.unitn.disi.nlptools.data.TextSpan Maven / Gradle / Ivy

The newest version!
package it.unitn.disi.nlptools.data;

/**
 * A span of text.
 *
 * @author 
 */
public abstract class TextSpan {

    protected String text;

    protected TextSpan() {
    }

    protected TextSpan(String text) {
        this.text = text;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy