com.harium.suneidesis.chat.box.EchoBox 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
package com.harium.suneidesis.chat.box;
import com.harium.suneidesis.chat.instance.Instance;
import com.harium.suneidesis.chat.output.Output;
public class EchoBox extends LanguageBox {
public void input(String sentence, Instance instance, Output output) {
output.print(sentence);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy