Returns the contents of this builder. @return the string representation of the data in this builder.
()
| 652 | * @return the string representation of the data in this builder. |
| 653 | */ |
| 654 | @Override |
| 655 | public String toString() { |
| 656 | /* Note: This method is required to workaround a compiler bug |
| 657 | * in the RI javac (at least in 1.5.0_06) that will generate a |
| 658 | * reference to the non-public AbstractStringBuilder if we don't |
| 659 | * override it here. |
| 660 | */ |
| 661 | return super.toString(); |
| 662 | } |
| 663 | |
| 664 | /** |
| 665 | * Reads the state of a {@code StringBuilder} from the passed stream and |
no test coverage detected