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

org.wikibrain.sr.wikify.IdAndText Maven / Gradle / Ivy

There is a newer version: 0.9.1
Show newest version
package org.wikibrain.sr.wikify;

/**
 * @author Shilad Sen
 */
public class IdAndText {
    private int id;
    private String text;


    public IdAndText(String text) {
        this(-1, text);
    }

    public IdAndText(int id, String text) {
        this.id = id;
        this.text = text;
    }

    public int getId() {
        return id;
    }

    public String getText() {
        return text;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy