Package org.apache.maven.internal.impl
Class DefaultMessageBuilder
java.lang.Object
org.apache.maven.internal.impl.DefaultMessageBuilder
- All Implemented Interfaces:
- MessageBuilder
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiona(char[] chars) Append content to the message buffer.a(char[] chars, int i, int i1) Append content to the message buffer.a(CharSequence charSequence) Append content to the message buffer.a(CharSequence charSequence, int i, int i1) Append content to the message buffer.Append content to the message buffer.build()Return the built message.Append message content in debug style.Append message content in error style.Append message content in failure style.Append formatted content to the buffer.Append message content in info style.Append message content in mojo style.newline()Append newline to the message buffer.Append message content in project style.voidsetLength(int length) Set the buffer length.Append message content in strong style.Append message content in success style.toString()Append message content in trace style.Append message content in warning style.
- 
Constructor Details- 
DefaultMessageBuilderpublic DefaultMessageBuilder()
- 
DefaultMessageBuilder
 
- 
- 
Method Details- 
traceDescription copied from interface:MessageBuilderAppend message content in trace style. By default, bold magenta- Specified by:
- tracein interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
debugDescription copied from interface:MessageBuilderAppend message content in debug style. By default, bold cyan- Specified by:
- debugin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
infoDescription copied from interface:MessageBuilderAppend message content in info style. By default, bold blue- Specified by:
- infoin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
warningDescription copied from interface:MessageBuilderAppend message content in warning style. By default, bold yellow- Specified by:
- warningin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
errorDescription copied from interface:MessageBuilderAppend message content in error style. By default, bold red- Specified by:
- errorin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
successDescription copied from interface:MessageBuilderAppend message content in success style. By default, bold green- Specified by:
- successin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
failureDescription copied from interface:MessageBuilderAppend message content in failure style. By default, bold red- Specified by:
- failurein interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
strongDescription copied from interface:MessageBuilderAppend message content in strong style. By default, bold- Specified by:
- strongin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
mojoDescription copied from interface:MessageBuilderAppend message content in mojo style. By default, green- Specified by:
- mojoin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
projectDescription copied from interface:MessageBuilderAppend message content in project style. By default, cyan- Specified by:
- projectin interface- MessageBuilder
- Parameters:
- o- the message to append
- Returns:
- the current builder
 
- 
aDescription copied from interface:MessageBuilderAppend content to the message buffer.- Specified by:
- ain interface- MessageBuilder
- Parameters:
- chars- the content to append
- i- the index of the first- charto append
- i1- the number of- chars to append
- Returns:
- the current builder
 
- 
aDescription copied from interface:MessageBuilderAppend content to the message buffer.- Specified by:
- ain interface- MessageBuilder
- Parameters:
- chars- the content to append
- Returns:
- the current builder
 
- 
aDescription copied from interface:MessageBuilderAppend content to the message buffer.- Specified by:
- ain interface- MessageBuilder
- Parameters:
- charSequence- the content to append
- i- the starting index of the subsequence to be appended
- i1- the end index of the subsequence to be appended
- Returns:
- the current builder
 
- 
aDescription copied from interface:MessageBuilderAppend content to the message buffer.- Specified by:
- ain interface- MessageBuilder
- Parameters:
- charSequence- the content to append
- Returns:
- the current builder
 
- 
aDescription copied from interface:MessageBuilderAppend content to the message buffer.- Specified by:
- ain interface- MessageBuilder
- Parameters:
- o- the content to append
- Returns:
- the current builder
 
- 
newlineDescription copied from interface:MessageBuilderAppend newline to the message buffer.- Specified by:
- newlinein interface- MessageBuilder
- Returns:
- the current builder
 
- 
formatDescription copied from interface:MessageBuilderAppend formatted content to the buffer.- Specified by:
- formatin interface- MessageBuilder
- Parameters:
- s- a format string
- objects- arguments referenced by the format specifiers in the format string
- Returns:
- the current builder
- See Also:
 
- 
buildDescription copied from interface:MessageBuilderReturn the built message.- Specified by:
- buildin interface- MessageBuilder
- Returns:
- the message
 
- 
toString
- 
setLengthpublic void setLength(int length) Description copied from interface:MessageBuilderSet the buffer length.- Specified by:
- setLengthin interface- MessageBuilder
- Parameters:
- length- the new length
 
 
-