#2584: Add ComponentBuilder#appendLegacy

This commit is contained in:
kamcio96
2019-01-19 19:48:29 +01:00
committed by md_5
parent 3889f8683d
commit 7496b0a2c8
2 changed files with 25 additions and 0 deletions

View File

@@ -146,6 +146,19 @@ public final class ComponentBuilder
return append( text, FormatRetention.ALL );
}
/**
* Parse text to BaseComponent[] with colors and format, appends the text to
* the builder and makes it the current target for formatting. The component
* will have all the formatting from previous part.
*
* @param text the text to append
* @return this ComponentBuilder for chaining
*/
public ComponentBuilder appendLegacy(String text)
{
return append( TextComponent.fromLegacyText( text ) );
}
/**
* Appends the text to the builder and makes it the current target for
* formatting. You can specify the amount of formatting retained from