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