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