1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLMetaElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLMetaElement 31 { 32 33 public XHTMLMetaElementImpl (XHTMLDocumentBase owner, String namespaceURI, String tagName) { 34 super( owner, namespaceURI, tagName); 35 } 36 37 public void setId (String newValue) { 38 setAttribute("id", newValue); 39 } 40 41 public String getId () { 42 return getAttribute ("id"); 43 } 44 public void setLang (String newValue) { 45 setAttribute("lang", newValue); 46 } 47 48 public String getLang () { 49 return getAttribute ("lang"); 50 } 51 public void setDir (String newValue) { 52 setAttribute("dir", newValue); 53 } 54 55 public String getDir () { 56 return getAttribute ("dir"); 57 } 58 public void setTitle (String newValue) { 59 setAttribute("title", newValue); 60 } 61 62 public String getTitle () { 63 return getAttribute ("title"); 64 } 65 public void setName (String newValue) { 66 setAttribute("name", newValue); 67 } 68 69 public String getName () { 70 return getAttribute ("name"); 71 } 72 public void setContent (String newValue) { 73 setAttribute("content", newValue); 74 } 75 76 public String getContent () { 77 return getAttribute ("content"); 78 } 79 public void setHttpEquiv (String newValue) { 80 setAttribute("http-equiv", newValue); 81 } 82 83 public String getHttpEquiv () { 84 return getAttribute ("http-equiv"); 85 } 86 public void setScheme (String newValue) { 87 setAttribute("scheme", newValue); 88 } 89 90 public String getScheme () { 91 return getAttribute ("scheme"); 92 } 93 public void setXmlLang (String newValue) { 94 setAttribute("xml:lang", newValue); 95 } 96 97 public String getXmlLang () { 98 return getAttribute ("xml:lang"); 99 } 100 ; 101 102 103 104 ; 105 } 106 107 108 | Popular Tags |