
com.harium.suneidesis.chat.output.OutputContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
The newest version!
package com.harium.suneidesis.chat.output;
import com.harium.suneidesis.chat.instance.LanguageBox;
import java.util.HashMap;
import java.util.Map;
public class OutputContext {
private String sentence;
private LanguageBox instance;
private Map properties = new HashMap<>();
public OutputContext() {
super();
}
public OutputContext(String sentence) {
super();
this.sentence = sentence;
}
public String getSentence() {
return sentence;
}
public void setSentence(String sentence) {
this.sentence = sentence;
}
public LanguageBox getInstance() {
return instance;
}
public void setInstance(LanguageBox instance) {
this.instance = instance;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy