1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLDivElement; 19 20 27 public class HTMLDivElementImpl 28 extends HTMLElementImpl 29 implements HTMLDivElement 30 { 31 32 private static final long serialVersionUID = 3617290138322286649L; 33 34 public String getAlign() 35 { 36 return capitalize( getAttribute( "align" ) ); 37 } 38 39 40 public void setAlign( String align ) 41 { 42 setAttribute( "align", align ); 43 } 44 45 46 51 public HTMLDivElementImpl( HTMLDocumentImpl owner, String name ) 52 { 53 super( owner, name ); 54 } 55 56 57 } 58 | Popular Tags |