All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cobraparser.html.domimpl.HTMLBRElementImpl Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.cobraparser.html.domimpl;

import org.w3c.dom.html.HTMLBRElement;

public class HTMLBRElementImpl extends HTMLElementImpl implements HTMLBRElement {
  public HTMLBRElementImpl(final String name) {
    super(name);
  }

  public String getClear() {
    return this.getAttribute("clear");
  }

  public void setClear(final String clear) {
    this.setAttribute("clear", clear);
  }

  @Override
  protected void appendInnerTextImpl(final StringBuffer buffer) {
    buffer.append("\r\n");
    super.appendInnerTextImpl(buffer);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy