blob: ae694f7161c8f3821af07d162ec7a57e9e29a8bf [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package opennlp.tools.disambiguator;
public class DictionaryInstance {
protected int index;
protected String word;
protected String id;
protected String source;
protected String[] synset;
protected String gloss;
public DictionaryInstance(int index, String word, String id, String source,
String[] synset, String gloss) {
super();
this.index = index;
this.word = word;
this.id = id;
this.source = source;
this.synset = synset;
this.gloss = gloss;
}
/**
* Getters and Setters
*/
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public String getWord() {
return word;
}
public void setWord(String word) {
this.word = word;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String[] getSynset() {
return synset;
}
public void setSynset(String[] synset) {
this.synset = synset;
}
public String getGloss() {
return gloss;
}
public void setGloss(String gloss) {
this.gloss = gloss;
}
}