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

com.github.siwenyan.si.SiCommandExecutorEcho Maven / Gradle / Ivy

There is a newer version: 1.25.1.0
Show newest version
package com.github.siwenyan.si;

class SiCommandExecutorEcho extends SiCommandExecutor {

    @Override
    public void execute(SiCommand command, SiContext siContext) throws SiVerifyException {
        String message = command.getSiModelCommand().getTarget();
        message = siContext.dynamic(message,"","");

        System.out.println("ECHO: " + message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy