1 20 21 package org.ozoneDB.xml.dom.html; 22 23 import org.ozoneDB.xml.dom.ElementImpl; 24 import org.w3c.dom.html.HTMLBRElement; 25 26 27 33 public final class HTMLBRElementImpl extends HTMLElementImpl implements HTMLBRElement { 34 35 36 public String getClear() { 37 return capitalize( getAttribute( "clear" ) ); 38 } 39 40 41 public void setClear( String clear ) { 42 setAttribute( "clear", clear ); 43 } 44 45 46 51 public HTMLBRElementImpl( HTMLDocumentImpl owner, String name ) { 52 super( owner, "BR" ); 53 } 54 55 } 56 | Popular Tags |