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