Package echo.output
Interface EchoOutput
-
- All Known Implementing Classes:
MavenEchoOutput
public interface EchoOutput
Output a message to standard output with a specific level
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
debug(java.lang.String content)
The message will be output with debug level (maven debugging must be turned on to see message)void
error(java.lang.String content)
The message will be output with error levelvoid
fail(java.lang.String content)
The message will be output with a failure level (exception will occur)void
info(java.lang.String content)
The message will be output with info level (default level)void
warning(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)
-
-