1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLBRElement; 19 20 27 public class HTMLBRElementImpl 28 extends HTMLElementImpl 29 implements HTMLBRElement 30 { 31 32 private static final long serialVersionUID = 3688783691585172016L; 33 34 public String getClear() 35 { 36 return capitalize( getAttribute( "clear" ) ); 37 } 38 39 40 public void setClear( String clear ) 41 { 42 setAttribute( "clear", clear ); 43 } 44 45 46 51 public HTMLBRElementImpl( HTMLDocumentImpl owner, String name ) 52 { 53 super( owner, name ); 54 } 55 56 57 } 58 59 | Popular Tags |