1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLImageElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLImageElement 31 { 32 33 public XHTMLImageElementImpl (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 setAlign (String newValue) { 80 setAttribute("align", newValue); 81 } 82 83 public String getAlign () { 84 return getAttribute ("align"); 85 } 86 public void setAlt (String newValue) { 87 setAttribute("alt", newValue); 88 } 89 90 public String getAlt () { 91 return getAttribute ("alt"); 92 } 93 public void setHeight (String newValue) { 94 setAttribute("height", newValue); 95 } 96 97 public String getHeight () { 98 return getAttribute ("height"); 99 } 100 public void setHspace (String newValue) { 101 setAttribute("hspace", newValue); 102 } 103 104 public String getHspace () { 105 return getAttribute ("hspace"); 106 } 107 public void setVspace (String newValue) { 108 setAttribute("vspace", newValue); 109 } 110 111 public String getVspace () { 112 return getAttribute ("vspace"); 113 } 114 public void setWidth (String newValue) { 115 setAttribute("width", newValue); 116 } 117 118 public String getWidth () { 119 return getAttribute ("width"); 120 } 121 public void setLongDesc (String newValue) { 122 setAttribute("longdesc", newValue); 123 } 124 125 public String getLongDesc () { 126 return getAttribute ("longdesc"); 127 } 128 public void setSrc (String newValue) { 129 setAttribute("src", newValue); 130 } 131 132 public String getSrc () { 133 return getAttribute ("src"); 134 } 135 public void setLowSrc (String newValue) { 136 setAttribute("lowsrc", newValue); 137 } 138 139 public String getLowSrc () { 140 return getAttribute ("lowsrc"); 141 } 142 public void setBorder (String newValue) { 143 setAttribute("border", newValue); 144 } 145 146 public String getBorder () { 147 return getAttribute ("border"); 148 } 149 public void setIsMap (boolean newValue) { 150 setAttribute("ismap", newValue); 151 } 152 153 public boolean getIsMap () { 154 return getBooleanAttribute("ismap"); 155 } 156 public void setUseMap (String newValue) { 157 setAttribute("usemap", newValue); 158 } 159 160 public String getUseMap () { 161 return getAttribute ("usemap"); 162 } 163 public void setOnKeyUp (String newValue) { 164 setAttribute("onkeyup", newValue); 165 } 166 167 public String getOnKeyUp () { 168 return getAttribute ("onkeyup"); 169 } 170 public void setStyle (String newValue) { 171 setAttribute("style", newValue); 172 } 173 174 public String getStyle () { 175 return getAttribute ("style"); 176 } 177 public void setOnMouseDown (String newValue) { 178 setAttribute("onmousedown", newValue); 179 } 180 181 public String getOnMouseDown () { 182 return getAttribute ("onmousedown"); 183 } 184 public void setOnKeyPress (String newValue) { 185 setAttribute("onkeypress", newValue); 186 } 187 188 public String getOnKeyPress () { 189 return getAttribute ("onkeypress"); 190 } 191 public void setOnDblClick (String newValue) { 192 setAttribute("ondblclick", newValue); 193 } 194 195 public String getOnDblClick () { 196 return getAttribute ("ondblclick"); 197 } 198 public void setOnKeyDown (String newValue) { 199 setAttribute("onkeydown", newValue); 200 } 201 202 public String getOnKeyDown () { 203 return getAttribute ("onkeydown"); 204 } 205 public void setOnMouseMove (String newValue) { 206 setAttribute("onmousemove", newValue); 207 } 208 209 public String getOnMouseMove () { 210 return getAttribute ("onmousemove"); 211 } 212 public void setOnMouseUp (String newValue) { 213 setAttribute("onmouseup", newValue); 214 } 215 216 public String getOnMouseUp () { 217 return getAttribute ("onmouseup"); 218 } 219 public void setXmlLang (String newValue) { 220 setAttribute("xml:lang", newValue); 221 } 222 223 public String getXmlLang () { 224 return getAttribute ("xml:lang"); 225 } 226 public void setOnMouseOut (String newValue) { 227 setAttribute("onmouseout", newValue); 228 } 229 230 public String getOnMouseOut () { 231 return getAttribute ("onmouseout"); 232 } 233 public void setOnClick (String newValue) { 234 setAttribute("onclick", newValue); 235 } 236 237 public String getOnClick () { 238 return getAttribute ("onclick"); 239 } 240 public void setOnMouseOver (String newValue) { 241 setAttribute("onmouseover", newValue); 242 } 243 244 public String getOnMouseOver () { 245 return getAttribute ("onmouseover"); 246 } 247 ; 248 249 ; 250 } 251 252 253 | Popular Tags |