1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLLinkElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLLinkElement 31 { 32 33 public XHTMLLinkElementImpl (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 setType (String newValue) { 73 setAttribute("type", newValue); 74 } 75 76 public String getType () { 77 return getAttribute ("type"); 78 } 79 public void setCharset (String newValue) { 80 setAttribute("charset", newValue); 81 } 82 83 public String getCharset () { 84 return getAttribute ("charset"); 85 } 86 public void setHref (String newValue) { 87 setAttribute("href", newValue); 88 } 89 90 public String getHref () { 91 return getAttribute ("href"); 92 } 93 public void setHreflang (String newValue) { 94 setAttribute("hreflang", newValue); 95 } 96 97 public String getHreflang () { 98 return getAttribute ("hreflang"); 99 } 100 public void setRel (String newValue) { 101 setAttribute("rel", newValue); 102 } 103 104 public String getRel () { 105 return getAttribute ("rel"); 106 } 107 public void setRev (String newValue) { 108 setAttribute("rev", newValue); 109 } 110 111 public String getRev () { 112 return getAttribute ("rev"); 113 } 114 public void setTarget (String newValue) { 115 setAttribute("target", newValue); 116 } 117 118 public String getTarget () { 119 return getAttribute ("target"); 120 } 121 public void setDisabled (boolean newValue) { 122 setAttribute("disabled", newValue); 123 } 124 125 public boolean getDisabled () { 126 return getBooleanAttribute ("disabled"); 127 } 128 public void setMedia (String newValue) { 129 setAttribute("media", newValue); 130 } 131 132 public String getMedia () { 133 return getAttribute ("media"); 134 } 135 public void setOnKeyUp (String newValue) { 136 setAttribute("onkeyup", newValue); 137 } 138 139 public String getOnKeyUp () { 140 return getAttribute ("onkeyup"); 141 } 142 public void setStyle (String newValue) { 143 setAttribute("style", newValue); 144 } 145 146 public String getStyle () { 147 return getAttribute ("style"); 148 } 149 public void setOnMouseDown (String newValue) { 150 setAttribute("onmousedown", newValue); 151 } 152 153 public String getOnMouseDown () { 154 return getAttribute ("onmousedown"); 155 } 156 public void setOnKeyPress (String newValue) { 157 setAttribute("onkeypress", newValue); 158 } 159 160 public String getOnKeyPress () { 161 return getAttribute ("onkeypress"); 162 } 163 public void setOnDblClick (String newValue) { 164 setAttribute("ondblclick", newValue); 165 } 166 167 public String getOnDblClick () { 168 return getAttribute ("ondblclick"); 169 } 170 public void setOnKeyDown (String newValue) { 171 setAttribute("onkeydown", newValue); 172 } 173 174 public String getOnKeyDown () { 175 return getAttribute ("onkeydown"); 176 } 177 public void setOnMouseMove (String newValue) { 178 setAttribute("onmousemove", newValue); 179 } 180 181 public String getOnMouseMove () { 182 return getAttribute ("onmousemove"); 183 } 184 public void setOnMouseUp (String newValue) { 185 setAttribute("onmouseup", newValue); 186 } 187 188 public String getOnMouseUp () { 189 return getAttribute ("onmouseup"); 190 } 191 public void setXmlLang (String newValue) { 192 setAttribute("xml:lang", newValue); 193 } 194 195 public String getXmlLang () { 196 return getAttribute ("xml:lang"); 197 } 198 public void setOnMouseOut (String newValue) { 199 setAttribute("onmouseout", newValue); 200 } 201 202 public String getOnMouseOut () { 203 return getAttribute ("onmouseout"); 204 } 205 public void setOnClick (String newValue) { 206 setAttribute("onclick", newValue); 207 } 208 209 public String getOnClick () { 210 return getAttribute ("onclick"); 211 } 212 public void setOnMouseOver (String newValue) { 213 setAttribute("onmouseover", newValue); 214 } 215 216 public String getOnMouseOver () { 217 return getAttribute ("onmouseover"); 218 } 219 ; 220 221 222 223 ; 224 } 225 226 227 | Popular Tags |