1 57 package com.sun.org.apache.html.internal.dom; 58 59 60 import org.w3c.dom.html.HTMLHeadingElement; 61 62 63 69 public class HTMLHeadingElementImpl 70 extends HTMLElementImpl 71 implements HTMLHeadingElement 72 { 73 74 75 public String getAlign() 76 { 77 return getCapitalized( "align" ); 78 } 79 80 81 public void setAlign( String align ) 82 { 83 setAttribute( "align", align ); 84 } 85 86 87 92 public HTMLHeadingElementImpl( HTMLDocumentImpl owner, String name ) 93 { 94 super( owner, name ); 95 } 96 97 98 } 99 100 | Popular Tags |