1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLTextAreaElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLTextAreaElement 31 { 32 33 public XHTMLTextAreaElementImpl (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 setName (String newValue) { 73 setAttribute("name", newValue); 74 } 75 76 public String getName () { 77 return getAttribute ("name"); 78 } 79 public void setValue (String newValue) { 80 setAttribute("value", newValue); 81 } 82 83 public String getValue () { 84 return getAttribute ("value"); 85 } 86 public void setType (String newValue) { 87 setAttribute("type", newValue); 88 } 89 90 public String getType () { 91 return getAttribute ("type"); 92 } 93 public void setAccessKey (String newValue) { 94 setAttribute("accesskey", newValue); 95 } 96 97 public String getAccessKey () { 98 return getAttribute ("accesskey"); 99 } 100 public void setTabIndex (int newValue) { 101 setAttribute("tabindex", newValue); 102 } 103 104 public int getTabIndex () { 105 return getIntAttribute ("tabindex"); 106 } 107 public void setDisabled (boolean newValue) { 108 setAttribute("disabled", newValue); 109 } 110 111 public boolean getDisabled () { 112 return getBooleanAttribute("disabled"); 113 } 114 public void setCols (int newValue) { 115 setAttribute("cols", newValue); 116 } 117 118 public int getCols () { 119 return getIntAttribute ("cols"); 120 } 121 public void setRows (int newValue) { 122 setAttribute("rows", newValue); 123 } 124 125 public int getRows () { 126 return getIntAttribute ("rows"); 127 } 128 public void setDefaultValue (String newValue) { 129 setAttribute("defaultvalue", newValue); 130 } 131 132 public String getDefaultValue () { 133 return getAttribute ("defaultvalue"); 134 } 135 public void setReadOnly(boolean newValue) { 136 setAttribute("readonly", newValue); 137 } 138 139 public boolean getReadOnly () { 140 return getBooleanAttribute("readonly"); 141 } 142 public void setOnKeyUp (String newValue) { 143 setAttribute("onkeyup", newValue); 144 } 145 146 public String getOnKeyUp () { 147 return getAttribute ("onkeyup"); 148 } 149 public void setStyle (String newValue) { 150 setAttribute("style", newValue); 151 } 152 153 public String getStyle () { 154 return getAttribute ("style"); 155 } 156 public void setOnMouseDown (String newValue) { 157 setAttribute("onmousedown", newValue); 158 } 159 160 public String getOnMouseDown () { 161 return getAttribute ("onmousedown"); 162 } 163 public void setOnKeyPress (String newValue) { 164 setAttribute("onkeypress", newValue); 165 } 166 167 public String getOnKeyPress () { 168 return getAttribute ("onkeypress"); 169 } 170 public void setOnDblClick (String newValue) { 171 setAttribute("ondblclick", newValue); 172 } 173 174 public String getOnDblClick () { 175 return getAttribute ("ondblclick"); 176 } 177 public void setOnKeyDown (String newValue) { 178 setAttribute("onkeydown", newValue); 179 } 180 181 public String getOnKeyDown () { 182 return getAttribute ("onkeydown"); 183 } 184 public void setOnMouseMove (String newValue) { 185 setAttribute("onmousemove", newValue); 186 } 187 188 public String getOnMouseMove () { 189 return getAttribute ("onmousemove"); 190 } 191 public void setOnMouseUp (String newValue) { 192 setAttribute("onmouseup", newValue); 193 } 194 195 public String getOnMouseUp () { 196 return getAttribute ("onmouseup"); 197 } 198 public void setXmlLang (String newValue) { 199 setAttribute("xml:lang", newValue); 200 } 201 202 public String getXmlLang () { 203 return getAttribute ("xml:lang"); 204 } 205 public void setOnMouseOut (String newValue) { 206 setAttribute("onmouseout", newValue); 207 } 208 209 public String getOnMouseOut () { 210 return getAttribute ("onmouseout"); 211 } 212 public void setOnClick (String newValue) { 213 setAttribute("onclick", newValue); 214 } 215 216 public String getOnClick () { 217 return getAttribute ("onclick"); 218 } 219 public void setOnMouseOver (String newValue) { 220 setAttribute("onmouseover", newValue); 221 } 222 223 public String getOnMouseOver () { 224 return getAttribute ("onmouseover"); 225 } 226 public void setOnBlur (String newValue) { 227 setAttribute("onblur", newValue); 228 } 229 230 public String getOnBlur () { 231 return getAttribute ("onblur"); 232 } 233 public void setOnFocus (String newValue) { 234 setAttribute("onfocus", newValue); 235 } 236 237 public String getOnFocus () { 238 return getAttribute ("onfocus"); 239 } 240 public void setOnSelect (String newValue) { 241 setAttribute("onselect", newValue); 242 } 243 244 public String getOnSelect () { 245 return getAttribute ("onselect"); 246 } 247 public void setOnChange (String newValue) { 248 setAttribute("onchange", newValue); 249 } 250 251 public String getOnChange () { 252 return getAttribute ("onchange"); 253 } 254 ; 255 256 public void blur() { 257 } 259 260 public void focus() { 261 } 263 264 public void select() { 265 } 267 268 269 ; 270 } 271 272 273 | Popular Tags |