1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLMetaElement; 19 20 27 public class HTMLMetaElementImpl 28 extends HTMLElementImpl 29 implements HTMLMetaElement 30 { 31 32 private static final long serialVersionUID = 3256722862131197489L; 33 34 public String getContent() 35 { 36 return getAttribute( "content" ); 37 } 38 39 40 public void setContent( String content ) 41 { 42 setAttribute( "content", content ); 43 } 44 45 46 47 public String getHttpEquiv() 48 { 49 return getAttribute( "http-equiv" ); 50 } 51 52 53 public void setHttpEquiv( String httpEquiv ) 54 { 55 setAttribute( "http-equiv", httpEquiv ); 56 } 57 58 59 public String getName() 60 { 61 return getAttribute( "name" ); 62 } 63 64 65 public void setName( String name ) 66 { 67 setAttribute( "name", name ); 68 } 69 70 71 public String getScheme() 72 { 73 return getAttribute( "scheme" ); 74 } 75 76 77 public void setScheme( String scheme ) 78 { 79 setAttribute( "scheme", scheme ); 80 } 81 82 83 88 public HTMLMetaElementImpl( HTMLDocumentImpl owner, String name ) 89 { 90 super( owner, name ); 91 } 92 93 94 } 95 96 | Popular Tags |