
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
The newest version!
package com.harium.suneidesis.chat.box;
import com.harium.suneidesis.chat.Parser;
import com.harium.suneidesis.chat.input.InputContext;
import com.harium.suneidesis.chat.output.Output;
public class EchoBox implements Parser {
@Override
public boolean parse(InputContext input, Output output) {
output.print(input.getSentence());
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy