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.HTMLMetaElement; 27 28 29 35 public final class HTMLMetaElementImpl extends HTMLElementImpl implements HTMLMetaElement { 36 37 38 public String getContent() { 39 return getAttribute( "content" ); 40 } 41 42 43 public void setContent( String content ) { 44 setAttribute( "content", content ); 45 } 46 47 48 public String getHttpEquiv() { 49 return getAttribute( "http-equiv" ); 50 } 51 52 53 public void setHttpEquiv( String httpEquiv ) { 54 setAttribute( "http-equiv", httpEquiv ); 55 } 56 57 58 public String getName() { 59 return getAttribute( "name" ); 60 } 61 62 63 public void setName( String name ) { 64 setAttribute( "name", name ); 65 } 66 67 68 public String getScheme() { 69 return getAttribute( "scheme" ); 70 } 71 72 73 public void setScheme( String scheme ) { 74 setAttribute( "scheme", scheme ); 75 } 76 77 78 83 public HTMLMetaElementImpl( HTMLDocumentImpl owner, String name ) { 84 super( owner, "META" ); 85 } 86 87 88 } 89 | Popular Tags |