Package org.apache.maven.internal.impl
Class DefaultMessageBuilder
java.lang.Object
org.apache.maven.internal.impl.DefaultMessageBuilder
- All Implemented Interfaces:
- MessageBuilder
- 
Constructor SummaryConstructorsConstructorDescriptionDefaultMessageBuilder(org.apache.maven.shared.utils.logging.MessageBuilder delegate) 
- 
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 failure style.Append formatted content to the buffer.Append message content in mojo style.newline()Append newline to the message buffer.Append message content in project style.Append message content in strong style.Append message content in success style.Append message content in warning style.
- 
Constructor Details
- 
Method Details- 
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
 
- 
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
 
- 
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
 
 
-