1 20 21 22 package org.ozoneDB.xml.dom.html; 23 24 25 import org.ozoneDB.xml.dom.ElementImpl; 26 import org.w3c.dom.html.HTMLHeadingElement; 27 28 29 35 public final class HTMLHeadingElementImpl extends HTMLElementImpl implements HTMLHeadingElement { 36 37 38 public String getAlign() { 39 return getCapitalized( "align" ); 40 } 41 42 43 public void setAlign( String align ) { 44 setAttribute( "align", align ); 45 } 46 47 48 53 public HTMLHeadingElementImpl( HTMLDocumentImpl owner, String head ) { 54 super( owner, head ); 55 } 56 57 58 } 59 | Popular Tags |