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