Пример #1
0
  /**
   * Closes element, appending "</", element name and ">".
   *
   * <p>Ex: &quot;&lt;/div&gt&quot;.
   *
   * @param name The name of the element to close
   * @return a reference to this builder.
   */
  public MarkupBuilder closeElement(String name) {

    buffer.append(MarkupUtils.closeElement(name));

    return this;
  }