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

org.nlp2rdf.parser.EntityMention Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package org.nlp2rdf.parser;

/*
 * Milan Dojchinovski 
 * http://dojchinovski.mk
 */
public class EntityMention {
    private int beginIndex;
    private int endIndex;
    private String mention;
    private String context;
    private String referenceContext;

    /**
     * @return the beginIndex
     */
    public int getBeginIndex() {
        return beginIndex;
    }

    /**
     * @param beginIndex the beginIndex to set
     */
    public void setBeginIndex(int beginIndex) {
        this.beginIndex = beginIndex;
    }

    /**
     * @return the endIndex
     */
    public int getEndIndex() {
        return endIndex;
    }

    /**
     * @param endIndex the endIndex to set
     */
    public void setEndIndex(int endIndex) {
        this.endIndex = endIndex;
    }

    /**
     * @return the mention text
     */
    public String getMention() {
        return mention;
    }

    /**
     * @param mention the mention text to set
     */
    public void setMention(String mention) {
        this.mention = mention;
    }

    public String getContext() {
        return context;
    }

    public void setContext(String context) {
        this.context = context;
    }

    public String getReferenceContext() {
        return referenceContext;
    }

    public void setReferenceContext(String referenceContext) {
        this.referenceContext = referenceContext;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy