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.HTMLParagraphElement; 27 28 29 35 public final class HTMLParagraphElementImpl extends HTMLElementImpl implements HTMLParagraphElement { 36 37 38 public String getAlign() { 39 return getAttribute( "align" ); 40 } 41 42 43 public void setAlign( String align ) { 44 setAttribute( "align", align ); 45 } 46 47 48 53 public HTMLParagraphElementImpl( HTMLDocumentImpl owner, String name ) { 54 super( owner, "P" ); 55 } 56 57 58 } 59 | Popular Tags |