1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 import org.w3c.dom.html.HTMLCollection; 28 29 public class XHTMLMapElementImpl 30 extends XHTMLElementImpl 31 implements org.enhydra.xml.xhtml.dom.XHTMLMapElement 32 { 33 34 public XHTMLMapElementImpl (XHTMLDocumentBase owner, String namespaceURI, String tagName) { 35 super( owner, namespaceURI, tagName); 36 } 37 38 public void setId (String newValue) { 39 setAttribute("id", newValue); 40 } 41 42 public String getId () { 43 return getAttribute ("id"); 44 } 45 public void setLang (String newValue) { 46 setAttribute("lang", newValue); 47 } 48 49 public String getLang () { 50 return getAttribute ("lang"); 51 } 52 public void setDir (String newValue) { 53 setAttribute("dir", newValue); 54 } 55 56 public String getDir () { 57 return getAttribute ("dir"); 58 } 59 public void setClassName (String newValue) { 60 setAttribute("class", newValue); 61 } 62 63 public String getClassName () { 64 return getAttribute ("class"); 65 } 66 public void setTitle (String newValue) { 67 setAttribute("title", newValue); 68 } 69 70 public String getTitle () { 71 return getAttribute ("title"); 72 } 73 public void setName (String newValue) { 74 setAttribute("name", newValue); 75 } 76 77 public String getName () { 78 return getAttribute ("name"); 79 } 80 public void setOnKeyUp (String newValue) { 81 setAttribute("onkeyup", newValue); 82 } 83 84 public String getOnKeyUp () { 85 return getAttribute ("onkeyup"); 86 } 87 public void setStyle (String newValue) { 88 setAttribute("style", newValue); 89 } 90 91 public String getStyle () { 92 return getAttribute ("style"); 93 } 94 public void setOnMouseDown (String newValue) { 95 setAttribute("onmousedown", newValue); 96 } 97 98 public String getOnMouseDown () { 99 return getAttribute ("onmousedown"); 100 } 101 public void setOnKeyPress (String newValue) { 102 setAttribute("onkeypress", newValue); 103 } 104 105 public String getOnKeyPress () { 106 return getAttribute ("onkeypress"); 107 } 108 public void setOnDblClick (String newValue) { 109 setAttribute("ondblclick", newValue); 110 } 111 112 public String getOnDblClick () { 113 return getAttribute ("ondblclick"); 114 } 115 public void setOnKeyDown (String newValue) { 116 setAttribute("onkeydown", newValue); 117 } 118 119 public String getOnKeyDown () { 120 return getAttribute ("onkeydown"); 121 } 122 public void setOnMouseMove (String newValue) { 123 setAttribute("onmousemove", newValue); 124 } 125 126 public String getOnMouseMove () { 127 return getAttribute ("onmousemove"); 128 } 129 public void setOnMouseUp (String newValue) { 130 setAttribute("onmouseup", newValue); 131 } 132 133 public String getOnMouseUp () { 134 return getAttribute ("onmouseup"); 135 } 136 public void setXmlLang (String newValue) { 137 setAttribute("xml:lang", newValue); 138 } 139 140 public String getXmlLang () { 141 return getAttribute ("xml:lang"); 142 } 143 public void setOnMouseOut (String newValue) { 144 setAttribute("onmouseout", newValue); 145 } 146 147 public String getOnMouseOut () { 148 return getAttribute ("onmouseout"); 149 } 150 public void setOnClick (String newValue) { 151 setAttribute("onclick", newValue); 152 } 153 154 public String getOnClick () { 155 return getAttribute ("onclick"); 156 } 157 public void setOnMouseOver (String newValue) { 158 setAttribute("onmouseover", newValue); 159 } 160 161 public String getOnMouseOver () { 162 return getAttribute ("onmouseover"); 163 } 164 ; 165 166 167 public HTMLCollection getAreas() { 168 if ( _areas == null ) 169 _areas = new XHTMLCollectionImpl( this, XHTMLCollectionImpl.AREA ); 170 return _areas; 171 } 172 173 private HTMLCollection _areas; 174 175 ; 176 } 177 178 179 | Popular Tags |