1 57 package org.enhydra.xml.lazydom.html; 58 import org.enhydra.xml.lazydom.LazyElement; 59 import org.enhydra.xml.lazydom.LazyElementNoNS; 60 import org.w3c.dom.html.HTMLBRElement; 61 62 63 69 public class HTMLBRElementImpl 70 extends LazyHTMLElement 71 implements HTMLBRElement 72 { 73 74 75 public String getClear() 76 { 77 return capitalize( getAttribute( "clear" ) ); 78 } 79 80 81 public void setClear( String clear ) 82 { 83 setAttribute( "clear", clear ); 84 } 85 86 87 92 public HTMLBRElementImpl( LazyHTMLDocument owner, LazyElement template, String name ) 93 { 94 super( owner, template, name ); 95 } 96 97 98 } 99 100 | Popular Tags |