KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > lobobrowser > html > domimpl > HTMLBRElementImpl


1 package org.lobobrowser.html.domimpl;
2
3 import org.w3c.dom.html2.HTMLBRElement;
4
5 public class HTMLBRElementImpl extends HTMLElementImpl implements HTMLBRElement {
6     public HTMLBRElementImpl(String JavaDoc name) {
7         super(name);
8     }
9     
10     public String JavaDoc getClear() {
11         return this.getAttribute("clear");
12     }
13
14     public void setClear(String JavaDoc clear) {
15         this.setAttribute("clear", clear);
16     }
17
18     protected void appendInnerTextImpl(StringBuffer JavaDoc buffer) {
19         buffer.append("\r\n");
20         super.appendInnerTextImpl(buffer);
21     }
22 }
23
Popular Tags