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

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

    return this;
  }