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.HTMLTableCaptionElement; 27 28 29 35 public final class HTMLTableCaptionElementImpl extends HTMLElementImpl implements HTMLTableCaptionElement { 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 HTMLTableCaptionElementImpl( HTMLDocumentImpl owner, String name ) { 54 super( owner, "CAPTION" ); 55 } 56 57 58 } 59 | Popular Tags |