Package echo.output
Class EchoOutputWrapper
- java.lang.Object
-
- echo.output.EchoOutputWrapper
-
public class EchoOutputWrapper extends java.lang.Object
Will echo a message to standard output (in Maven) with the right message level.
-
-
Field Summary
Fields Modifier and Type Field Description private EchoOutput
echoOutput
private OutputLevelType
level
-
Constructor Summary
Constructors Constructor Description EchoOutputWrapper(EchoOutput echoOutput, PluginParameters pluginParameters)
Creates a new instance of the EchoOutputWrapper class
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
output(java.lang.String content)
Echo the content to standard output (in Maven)
-
-
-
Field Detail
-
echoOutput
private final EchoOutput echoOutput
-
level
private final OutputLevelType level
-
-
Constructor Detail
-
EchoOutputWrapper
public EchoOutputWrapper(EchoOutput echoOutput, PluginParameters pluginParameters)
Creates a new instance of the EchoOutputWrapper class- Parameters:
echoOutput
- the utility class to output to standard output (in Maven)pluginParameters
- The user-supplied plugin parameters
-
-