1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLBodyElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLBodyElement 31 { 32 33 public XHTMLBodyElementImpl (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 setClassName (String newValue) { 59 setAttribute("class", newValue); 60 } 61 62 public String getClassName () { 63 return getAttribute ("class"); 64 } 65 public void setTitle (String newValue) { 66 setAttribute("title", newValue); 67 } 68 69 public String getTitle () { 70 return getAttribute ("title"); 71 } 72 public void setALink (String newValue) { 73 setAttribute("alink", newValue); 74 } 75 76 public String getALink () { 77 return getAttribute ("alink"); 78 } 79 public void setBackground (String newValue) { 80 setAttribute("background", newValue); 81 } 82 83 public String getBackground () { 84 return getAttribute ("background"); 85 } 86 public void setBgColor (String newValue) { 87 setAttribute("bgcolor", newValue); 88 } 89 90 public String getBgColor () { 91 return getAttribute ("bgcolor"); 92 } 93 public void setLink (String newValue) { 94 setAttribute("link", newValue); 95 } 96 97 public String getLink () { 98 return getAttribute ("link"); 99 } 100 public void setVLink (String newValue) { 101 setAttribute("vlink", newValue); 102 } 103 104 public String getVLink () { 105 return getAttribute ("vlink"); 106 } 107 public void setOnKeyUp (String newValue) { 108 setAttribute("onkeyup", newValue); 109 } 110 111 public String getOnKeyUp () { 112 return getAttribute ("onkeyup"); 113 } 114 public void setStyle (String newValue) { 115 setAttribute("style", newValue); 116 } 117 118 public String getStyle () { 119 return getAttribute ("style"); 120 } 121 public void setOnMouseDown (String newValue) { 122 setAttribute("onmousedown", newValue); 123 } 124 125 public String getOnMouseDown () { 126 return getAttribute ("onmousedown"); 127 } 128 public void setOnKeyPress (String newValue) { 129 setAttribute("onkeypress", newValue); 130 } 131 132 public String getOnKeyPress () { 133 return getAttribute ("onkeypress"); 134 } 135 public void setOnDblClick (String newValue) { 136 setAttribute("ondblclick", newValue); 137 } 138 139 public String getOnDblClick () { 140 return getAttribute ("ondblclick"); 141 } 142 public void setOnKeyDown (String newValue) { 143 setAttribute("onkeydown", newValue); 144 } 145 146 public String getOnKeyDown () { 147 return getAttribute ("onkeydown"); 148 } 149 public void setOnMouseMove (String newValue) { 150 setAttribute("onmousemove", newValue); 151 } 152 153 public String getOnMouseMove () { 154 return getAttribute ("onmousemove"); 155 } 156 public void setOnMouseUp (String newValue) { 157 setAttribute("onmouseup", newValue); 158 } 159 160 public String getOnMouseUp () { 161 return getAttribute ("onmouseup"); 162 } 163 public void setXmlLang (String newValue) { 164 setAttribute("xml:lang", newValue); 165 } 166 167 public String getXmlLang () { 168 return getAttribute ("xml:lang"); 169 } 170 public void setOnMouseOut (String newValue) { 171 setAttribute("onmouseout", newValue); 172 } 173 174 public String getOnMouseOut () { 175 return getAttribute ("onmouseout"); 176 } 177 public void setOnClick (String newValue) { 178 setAttribute("onclick", newValue); 179 } 180 181 public String getOnClick () { 182 return getAttribute ("onclick"); 183 } 184 public void setOnMouseOver (String newValue) { 185 setAttribute("onmouseover", newValue); 186 } 187 188 public String getOnMouseOver () { 189 return getAttribute ("onmouseover"); 190 } 191 public void setOnUnload (String newValue) { 192 setAttribute("onunload", newValue); 193 } 194 195 public String getOnUnload () { 196 return getAttribute ("onunload"); 197 } 198 public void setOnLoad (String newValue) { 199 setAttribute("onload", newValue); 200 } 201 202 public String getOnLoad () { 203 return getAttribute ("onload"); 204 } 205 ; 206 207 public String getText() { 208 return getAttribute( "text" ); 209 } 210 211 public void setText(String text) { 212 setAttribute( "text", text ); 213 } 214 215 216 217 ; 218 } 219 220 221 | Popular Tags |