1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLLabelElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLLabelElement 31 { 32 33 public XHTMLLabelElementImpl (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 setAccessKey (String newValue) { 73 setAttribute("accesskey", newValue); 74 } 75 76 public String getAccessKey () { 77 return getAttribute ("accesskey"); 78 } 79 public void setHtmlFor (String newValue) { 80 setAttribute("htmlfor", newValue); 81 } 82 83 public String getHtmlFor () { 84 return getAttribute ("htmlfor"); 85 } 86 public void setOnKeyUp (String newValue) { 87 setAttribute("onkeyup", newValue); 88 } 89 90 public String getOnKeyUp () { 91 return getAttribute ("onkeyup"); 92 } 93 public void setStyle (String newValue) { 94 setAttribute("style", newValue); 95 } 96 97 public String getStyle () { 98 return getAttribute ("style"); 99 } 100 public void setOnMouseDown (String newValue) { 101 setAttribute("onmousedown", newValue); 102 } 103 104 public String getOnMouseDown () { 105 return getAttribute ("onmousedown"); 106 } 107 public void setOnKeyPress (String newValue) { 108 setAttribute("onkeypress", newValue); 109 } 110 111 public String getOnKeyPress () { 112 return getAttribute ("onkeypress"); 113 } 114 public void setOnDblClick (String newValue) { 115 setAttribute("ondblclick", newValue); 116 } 117 118 public String getOnDblClick () { 119 return getAttribute ("ondblclick"); 120 } 121 public void setOnKeyDown (String newValue) { 122 setAttribute("onkeydown", newValue); 123 } 124 125 public String getOnKeyDown () { 126 return getAttribute ("onkeydown"); 127 } 128 public void setOnMouseMove (String newValue) { 129 setAttribute("onmousemove", newValue); 130 } 131 132 public String getOnMouseMove () { 133 return getAttribute ("onmousemove"); 134 } 135 public void setOnMouseUp (String newValue) { 136 setAttribute("onmouseup", newValue); 137 } 138 139 public String getOnMouseUp () { 140 return getAttribute ("onmouseup"); 141 } 142 public void setXmlLang (String newValue) { 143 setAttribute("xml:lang", newValue); 144 } 145 146 public String getXmlLang () { 147 return getAttribute ("xml:lang"); 148 } 149 public void setOnMouseOut (String newValue) { 150 setAttribute("onmouseout", newValue); 151 } 152 153 public String getOnMouseOut () { 154 return getAttribute ("onmouseout"); 155 } 156 public void setOnClick (String newValue) { 157 setAttribute("onclick", newValue); 158 } 159 160 public String getOnClick () { 161 return getAttribute ("onclick"); 162 } 163 public void setOnMouseOver (String newValue) { 164 setAttribute("onmouseover", newValue); 165 } 166 167 public String getOnMouseOver () { 168 return getAttribute ("onmouseover"); 169 } 170 public void setOnBlur (String newValue) { 171 setAttribute("onblur", newValue); 172 } 173 174 public String getOnBlur () { 175 return getAttribute ("onblur"); 176 } 177 public void setOnFocus (String newValue) { 178 setAttribute("onfocus", newValue); 179 } 180 181 public String getOnFocus () { 182 return getAttribute ("onfocus"); 183 } 184 public void setFor (String newValue) { 185 setAttribute("for", newValue); 186 } 187 188 public String getFor () { 189 return getAttribute ("for"); 190 } 191 ; 192 193 194 195 ; 196 } 197 198 199 | Popular Tags |