Package echo.output
Interface EchoOutput
-
- All Known Implementing Classes:
MavenEchoOutput
public interface EchoOutputOutput a message to standard output with a specific level
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(java.lang.String content)The message will be output with debug level (maven debugging must be turned on to see message)voiderror(java.lang.String content)The message will be output with error levelvoidfail(java.lang.String content)The message will be output with a failure level (exception will occur)voidinfo(java.lang.String content)The message will be output with info level (default level)voidwarning(java.lang.String content)The message will be output with warning level
-
-
-
Method Detail
-
fail
void fail(java.lang.String content)
The message will be output with a failure level (exception will occur)
-
error
void error(java.lang.String content)
The message will be output with error level
-
warning
void warning(java.lang.String content)
The message will be output with warning level
-
info
void info(java.lang.String content)
The message will be output with info level (default level)
-
debug
void debug(java.lang.String content)
The message will be output with debug level (maven debugging must be turned on to see message)
-
-