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