1 57 package org.enhydra.apache.html.dom; 58 59 60 import org.enhydra.apache.xerces.dom.ElementImpl; 61 import org.w3c.dom.html.HTMLHeadElement; 62 63 64 70 public class HTMLHeadElementImpl 71 extends HTMLElementImpl 72 implements HTMLHeadElement 73 { 74 75 76 public String getProfile() 77 { 78 return getAttribute( "profile" ); 79 } 80 81 82 public void setProfile( String profile ) 83 { 84 setAttribute( "profile", profile ); 85 } 86 87 88 93 public HTMLHeadElementImpl( HTMLDocumentImpl owner, String name ) 94 { 95 super( owner, name ); 96 } 97 98 99 } 100 101 | Popular Tags |