1 57 package org.enhydra.apache.html.dom; 58 59 60 import org.enhydra.apache.xerces.dom.ElementImpl; 61 import org.w3c.dom.html.HTMLMetaElement; 62 63 64 70 public class HTMLMetaElementImpl 71 extends HTMLElementImpl 72 implements HTMLMetaElement 73 { 74 75 76 public String getContent() 77 { 78 return getAttribute( "content" ); 79 } 80 81 82 public void setContent( String content ) 83 { 84 setAttribute( "content", content ); 85 } 86 87 88 89 public String getHttpEquiv() 90 { 91 return getAttribute( "http-equiv" ); 92 } 93 94 95 public void setHttpEquiv( String httpEquiv ) 96 { 97 setAttribute( "http-equiv", httpEquiv ); 98 } 99 100 101 public String getName() 102 { 103 return getAttribute( "name" ); 104 } 105 106 107 public void setName( String name ) 108 { 109 setAttribute( "name", name ); 110 } 111 112 113 public String getScheme() 114 { 115 return getAttribute( "scheme" ); 116 } 117 118 119 public void setScheme( String scheme ) 120 { 121 setAttribute( "scheme", scheme ); 122 } 123 124 125 130 public HTMLMetaElementImpl( HTMLDocumentImpl owner, String name ) 131 { 132 super( owner, name ); 133 } 134 135 136 } 137 138 | Popular Tags |