KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > xml > xhtml > dom > xerces > XHTMLAreaElementImpl


1 /*
2  * Enhydra Java Application Server Project
3  *
4  * The contents of this file are subject to the Enhydra Public License
5  * Version 1.1 (the "License"); you may not use this file except in
6  * compliance with the License. You may obtain a copy of the License on
7  * the Enhydra web site ( http://www.enhydra.org/ ).
8  *
9  * Software distributed under the License is distributed on an "AS IS"
10  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
11  * the License for the specific terms governing rights and limitations
12  * under the License.
13  *
14  * The Initial Developer of the Original Code is DigitalSesame
15  * Portions created by DigitalSesame are Copyright (C) 1997-2000 DigitalSesame
16  * All Rights Reserved.
17  *
18  * Contributor(s):
19  * Rex Tsai <chihchun@digitalsesame.com>
20  * David Li <david@digitalsesam.com>
21  *
22  * $Id: XHTMLAreaElementImpl.java,v 1.2 2005/01/26 08:28:45 jkjome Exp $
23  */

24
25 package org.enhydra.xml.xhtml.dom.xerces;
26
27
28 public class XHTMLAreaElementImpl
29     extends XHTMLElementImpl
30     implements org.enhydra.xml.xhtml.dom.XHTMLAreaElement
31 {
32
33     public XHTMLAreaElementImpl (XHTMLDocumentBase owner, String JavaDoc namespaceURI, String JavaDoc tagName) {
34     super( owner, namespaceURI, tagName);
35     }
36
37         public void setId (String JavaDoc newValue) {
38     setAttribute("id", newValue);
39     }
40
41     public String JavaDoc getId () {
42     return getAttribute ("id");
43     }
44     public void setLang (String JavaDoc newValue) {
45     setAttribute("lang", newValue);
46     }
47
48     public String JavaDoc getLang () {
49     return getAttribute ("lang");
50     }
51     public void setDir (String JavaDoc newValue) {
52     setAttribute("dir", newValue);
53     }
54
55     public String JavaDoc getDir () {
56     return getAttribute ("dir");
57     }
58     public void setClassName (String JavaDoc newValue) {
59     setAttribute("class", newValue);
60     }
61
62     public String JavaDoc getClassName () {
63     return getAttribute ("class");
64     }
65     public void setTitle (String JavaDoc newValue) {
66     setAttribute("title", newValue);
67     }
68
69     public String JavaDoc getTitle () {
70     return getAttribute ("title");
71     }
72     public void setAccessKey (String JavaDoc newValue) {
73     setAttribute("accesskey", newValue);
74     }
75
76     public String JavaDoc getAccessKey () {
77     return getAttribute ("accesskey");
78     }
79     public void setCoords (String JavaDoc newValue) {
80     setAttribute("coords", newValue);
81     }
82
83     public String JavaDoc getCoords () {
84     return getAttribute ("coords");
85     }
86     public void setHref (String JavaDoc newValue) {
87     setAttribute("href", newValue);
88     }
89
90     public String JavaDoc getHref () {
91     return getAttribute ("href");
92     }
93     public void setShape (String JavaDoc newValue) {
94     setAttribute("shape", newValue);
95     }
96
97     public String JavaDoc getShape () {
98     return getAttribute ("shape");
99     }
100     public void setTabIndex (int newValue) {
101     setAttribute("tabindex", newValue);
102     }
103
104     public int getTabIndex () {
105     return getIntAttribute ("tabindex");
106     }
107     public void setTarget (String JavaDoc newValue) {
108     setAttribute("target", newValue);
109     }
110
111     public String JavaDoc getTarget () {
112     return getAttribute ("target");
113     }
114     public void setAlt (String JavaDoc newValue) {
115     setAttribute("alt", newValue);
116     }
117
118     public String JavaDoc getAlt () {
119     return getAttribute("alt");
120     }
121     public void setNoHref (boolean newValue) {
122     setAttribute("nohref", newValue);
123     }
124
125     public boolean getNoHref () {
126     return getBooleanAttribute("nohref");
127     }
128     public void setOnKeyUp (String JavaDoc newValue) {
129     setAttribute("onkeyup", newValue);
130     }
131
132     public String JavaDoc getOnKeyUp () {
133     return getAttribute ("onkeyup");
134     }
135     public void setStyle (String JavaDoc newValue) {
136     setAttribute("style", newValue);
137     }
138
139     public String JavaDoc getStyle () {
140     return getAttribute ("style");
141     }
142     public void setOnMouseDown (String JavaDoc newValue) {
143     setAttribute("onmousedown", newValue);
144     }
145
146     public String JavaDoc getOnMouseDown () {
147     return getAttribute ("onmousedown");
148     }
149     public void setOnKeyPress (String JavaDoc newValue) {
150     setAttribute("onkeypress", newValue);
151     }
152
153     public String JavaDoc getOnKeyPress () {
154     return getAttribute ("onkeypress");
155     }
156     public void setOnDblClick (String JavaDoc newValue) {
157     setAttribute("ondblclick", newValue);
158     }
159
160     public String JavaDoc getOnDblClick () {
161     return getAttribute ("ondblclick");
162     }
163     public void setOnKeyDown (String JavaDoc newValue) {
164     setAttribute("onkeydown", newValue);
165     }
166
167     public String JavaDoc getOnKeyDown () {
168     return getAttribute ("onkeydown");
169     }
170     public void setOnMouseMove (String JavaDoc newValue) {
171     setAttribute("onmousemove", newValue);
172     }
173
174     public String JavaDoc getOnMouseMove () {
175     return getAttribute ("onmousemove");
176     }
177     public void setOnMouseUp (String JavaDoc newValue) {
178     setAttribute("onmouseup", newValue);
179     }
180
181     public String JavaDoc getOnMouseUp () {
182     return getAttribute ("onmouseup");
183     }
184     public void setXmlLang (String JavaDoc newValue) {
185     setAttribute("xml:lang", newValue);
186     }
187
188     public String JavaDoc getXmlLang () {
189     return getAttribute ("xml:lang");
190     }
191     public void setOnMouseOut (String JavaDoc newValue) {
192     setAttribute("onmouseout", newValue);
193     }
194
195     public String JavaDoc getOnMouseOut () {
196     return getAttribute ("onmouseout");
197     }
198     public void setOnClick (String JavaDoc newValue) {
199     setAttribute("onclick", newValue);
200     }
201
202     public String JavaDoc getOnClick () {
203     return getAttribute ("onclick");
204     }
205     public void setOnMouseOver (String JavaDoc newValue) {
206     setAttribute("onmouseover", newValue);
207     }
208
209     public String JavaDoc getOnMouseOver () {
210     return getAttribute ("onmouseover");
211     }
212     public void setOnBlur (String JavaDoc newValue) {
213     setAttribute("onblur", newValue);
214     }
215
216     public String JavaDoc getOnBlur () {
217     return getAttribute ("onblur");
218     }
219     public void setOnFocus (String JavaDoc newValue) {
220     setAttribute("onfocus", newValue);
221     }
222
223     public String JavaDoc getOnFocus () {
224     return getAttribute ("onfocus");
225     }
226 ;
227
228     
229
230 ;
231 }
232
233
234
Popular Tags