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

com.joliciel.jochre.search.lexicon.SimpleLexicalEntry Maven / Gradle / Ivy

There is a newer version: 2.6.4
Show newest version
///////////////////////////////////////////////////////////////////////////////
//Copyright (C) 2016 Joliciel Informatique
//
//This file is part of Jochre.
//
//Jochre is free software: you can redistribute it and/or modify
//it under the terms of the GNU Affero General Public License as published by
//the Free Software Foundation, either version 3 of the License, or
//(at your option) any later version.
//
//Jochre is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//GNU Affero General Public License for more details.
//
//You should have received a copy of the GNU Affero General Public License
//along with Jochre.  If not, see .
//////////////////////////////////////////////////////////////////////////////
package com.joliciel.jochre.search.lexicon;

class SimpleLexicalEntry implements LexicalEntry {
  private static final long serialVersionUID = 1L;
  
  private String word;
  private String lemma = "";
  private String category = "";
  private String lexiconName = "";

  public String getWord() {
    return word;
  }

  public void setWord(String word) {
    this.word = word;
  }

  public String getLemma() {
    return lemma;
  }

  public void setLemma(String lemma) {
    this.lemma = lemma;
  }

  public String getCategory() {
    return category;
  }

  public void setCategory(String category) {
    this.category = category;
  }

  public String getLexiconName() {
    return lexiconName;
  }

  public void setLexiconName(String lexiconName) {
    this.lexiconName = lexiconName;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy