Пример #1
0
  /**
   * Appends text to this builder.
   *
   * @param text The text to append.
   * @return a reference to this builder.
   */
  public MarkupBuilder appendText(String text) {

    buffer.append(MarkupUtils.appendText(text));

    return this;
  }