1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLAnchorElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLAnchorElement 31 { 32 33 public XHTMLAnchorElementImpl (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 setType (String newValue) { 80 setAttribute("type", newValue); 81 } 82 83 public String getType () { 84 return getAttribute ("type"); 85 } 86 public void setAccessKey (String newValue) { 87 setAttribute("accesskey", newValue); 88 } 89 90 public String getAccessKey () { 91 return getAttribute ("accesskey"); 92 } 93 public void setCharset (String newValue) { 94 setAttribute("charset", newValue); 95 } 96 97 public String getCharset () { 98 return getAttribute ("charset"); 99 } 100 public void setCoords (String newValue) { 101 setAttribute("coords", newValue); 102 } 103 104 public String getCoords () { 105 return getAttribute ("coords"); 106 } 107 public void setHref (String newValue) { 108 setAttribute("href", newValue); 109 } 110 111 public String getHref () { 112 return getAttribute ("href"); 113 } 114 public void setHreflang (String newValue) { 115 setAttribute("hreflang", newValue); 116 } 117 118 public String getHreflang () { 119 return getAttribute ("hreflang"); 120 } 121 public void setRel (String newValue) { 122 setAttribute("rel", newValue); 123 } 124 125 public String getRel () { 126 return getAttribute ("rel"); 127 } 128 public void setRev (String newValue) { 129 setAttribute("rev", newValue); 130 } 131 132 public String getRev () { 133 return getAttribute ("rev"); 134 } 135 public void setShape (String newValue) { 136 setAttribute("shape", newValue); 137 } 138 139 public String getShape () { 140 return getAttribute ("shape"); 141 } 142 public void setTabIndex (int newValue) { 143 setAttribute("tabindex", newValue); 144 } 145 146 public int getTabIndex () { 147 return getIntAttribute ("tabindex"); 148 } 149 public void setTarget (String newValue) { 150 setAttribute("target", newValue); 151 } 152 153 public String getTarget () { 154 return getAttribute ("target"); 155 } 156 public void setOnKeyUp (String newValue) { 157 setAttribute("onkeyup", newValue); 158 } 159 160 public String getOnKeyUp () { 161 return getAttribute ("onkeyup"); 162 } 163 public void setStyle (String newValue) { 164 setAttribute("style", newValue); 165 } 166 167 public String getStyle () { 168 return getAttribute ("style"); 169 } 170 public void setOnMouseDown (String newValue) { 171 setAttribute("onmousedown", newValue); 172 } 173 174 public String getOnMouseDown () { 175 return getAttribute ("onmousedown"); 176 } 177 public void setOnKeyPress (String newValue) { 178 setAttribute("onkeypress", newValue); 179 } 180 181 public String getOnKeyPress () { 182 return getAttribute ("onkeypress"); 183 } 184 public void setOnDblClick (String newValue) { 185 setAttribute("ondblclick", newValue); 186 } 187 188 public String getOnDblClick () { 189 return getAttribute ("ondblclick"); 190 } 191 public void setOnKeyDown (String newValue) { 192 setAttribute("onkeydown", newValue); 193 } 194 195 public String getOnKeyDown () { 196 return getAttribute ("onkeydown"); 197 } 198 public void setOnMouseMove (String newValue) { 199 setAttribute("onmousemove", newValue); 200 } 201 202 public String getOnMouseMove () { 203 return getAttribute ("onmousemove"); 204 } 205 public void setOnMouseUp (String newValue) { 206 setAttribute("onmouseup", newValue); 207 } 208 209 public String getOnMouseUp () { 210 return getAttribute ("onmouseup"); 211 } 212 public void setXmlLang (String newValue) { 213 setAttribute("xml:lang", newValue); 214 } 215 216 public String getXmlLang () { 217 return getAttribute ("xml:lang"); 218 } 219 public void setOnMouseOut (String newValue) { 220 setAttribute("onmouseout", newValue); 221 } 222 223 public String getOnMouseOut () { 224 return getAttribute ("onmouseout"); 225 } 226 public void setOnClick (String newValue) { 227 setAttribute("onclick", newValue); 228 } 229 230 public String getOnClick () { 231 return getAttribute ("onclick"); 232 } 233 public void setOnMouseOver (String newValue) { 234 setAttribute("onmouseover", newValue); 235 } 236 237 public String getOnMouseOver () { 238 return getAttribute ("onmouseover"); 239 } 240 public void setOnBlur (String newValue) { 241 setAttribute("onblur", newValue); 242 } 243 244 public String getOnBlur () { 245 return getAttribute ("onblur"); 246 } 247 public void setOnFocus (String newValue) { 248 setAttribute("onfocus", newValue); 249 } 250 251 public String getOnFocus () { 252 return getAttribute ("onfocus"); 253 } 254 ; 255 256 257 public void blur() { 258 } 260 261 public void focus() { 262 } 264 265 266 ; 267 } 268 269 270 | Popular Tags |