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

info.bliki.wiki.model.SemanticRelation Maven / Gradle / Ivy

The newest version!
package info.bliki.wiki.model;

/**
 * A semantic web relation
 *
 * See Semantic MediaWiki for more information.
 *
 */
public class SemanticRelation {
    private String fRelation;

    private String fValue;

    public SemanticRelation(String relation, String value) {
        this.fRelation = relation;
        this.fValue = value;
    }

    public String getRelation() {
        return fRelation;
    }

    public void setRelation(String relation) {
        this.fRelation = relation;
    }

    public String getValue() {
        return fValue;
    }

    public void setValue(String value) {
        this.fValue = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy