KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > gargoylesoftware > htmlunit > html > HtmlObject


1 /*
2  * Copyright (c) 2002, 2005 Gargoyle Software Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice,
8  * this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  * this list of conditions and the following disclaimer in the documentation
11  * and/or other materials provided with the distribution.
12  * 3. The end-user documentation included with the redistribution, if any, must
13  * include the following acknowledgment:
14  *
15  * "This product includes software developed by Gargoyle Software Inc.
16  * (http://www.GargoyleSoftware.com/)."
17  *
18  * Alternately, this acknowledgment may appear in the software itself, if
19  * and wherever such third-party acknowledgments normally appear.
20  * 4. The name "Gargoyle Software" must not be used to endorse or promote
21  * products derived from this software without prior written permission.
22  * For written permission, please contact info@GargoyleSoftware.com.
23  * 5. Products derived from this software may not be called "HtmlUnit", nor may
24  * "HtmlUnit" appear in their name, without prior written permission of
25  * Gargoyle Software Inc.
26  *
27  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
28  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
29  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARGOYLE
30  * SOFTWARE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
31  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
33  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
36  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37  */

38 package com.gargoylesoftware.htmlunit.html;
39
40 import java.util.Map JavaDoc;
41
42 /**
43  * Wrapper for the html element "object".
44  *
45  * @version $Revision: 100 $
46  * @author <a HREF="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
47  * @author David K. Taylor
48  * @author <a HREF="mailto:cse@dynabean.de">Christian Sell</a>
49  */

50 public class HtmlObject extends ClickableElement {
51
52     /** the HTML tag represented by this element */
53     public static final String JavaDoc TAG_NAME = "object";
54
55     /**
56      * Create an instance of HtmlObject
57      *
58      * @param page The HtmlPage that contains this element.
59      * @param attributes the initial attributes
60      */

61     public HtmlObject( final HtmlPage page, final Map JavaDoc attributes ) {
62         super(page, attributes);
63     }
64
65     /**
66      * @return the HTML tag name
67      */

68     public String JavaDoc getTagName() {
69         return TAG_NAME;
70     }
71
72     /**
73      * Return the value of the attribute "declare". Refer to the
74      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
75      * documentation for details on the use of this attribute.
76      *
77      * @return The value of the attribute "declare"
78      * or an empty string if that attribute isn't defined.
79      */

80     public final String JavaDoc getDeclareAttribute() {
81         return getAttributeValue("declare");
82     }
83
84
85     /**
86      * Return the value of the attribute "classid". Refer to the
87      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
88      * documentation for details on the use of this attribute.
89      *
90      * @return The value of the attribute "classid"
91      * or an empty string if that attribute isn't defined.
92      */

93     public final String JavaDoc getClassIdAttribute() {
94         return getAttributeValue("classid");
95     }
96
97
98     /**
99      * Return the value of the attribute "codebase". Refer to the
100      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
101      * documentation for details on the use of this attribute.
102      *
103      * @return The value of the attribute "codebase"
104      * or an empty string if that attribute isn't defined.
105      */

106     public final String JavaDoc getCodebaseAttribute() {
107         return getAttributeValue("codebase");
108     }
109
110
111     /**
112      * Return the value of the attribute "data". Refer to the
113      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
114      * documentation for details on the use of this attribute.
115      *
116      * @return The value of the attribute "data"
117      * or an empty string if that attribute isn't defined.
118      */

119     public final String JavaDoc getDataAttribute() {
120         return getAttributeValue("data");
121     }
122
123
124     /**
125      * Return the value of the attribute "type". Refer to the
126      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
127      * documentation for details on the use of this attribute.
128      *
129      * @return The value of the attribute "type"
130      * or an empty string if that attribute isn't defined.
131      */

132     public final String JavaDoc getTypeAttribute() {
133         return getAttributeValue("type");
134     }
135
136
137     /**
138      * Return the value of the attribute "codetype". Refer to the
139      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
140      * documentation for details on the use of this attribute.
141      *
142      * @return The value of the attribute "codetype"
143      * or an empty string if that attribute isn't defined.
144      */

145     public final String JavaDoc getCodeTypeAttribute() {
146         return getAttributeValue("codetype");
147     }
148
149
150     /**
151      * Return the value of the attribute "archive". Refer to the
152      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
153      * documentation for details on the use of this attribute.
154      *
155      * @return The value of the attribute "archive"
156      * or an empty string if that attribute isn't defined.
157      */

158     public final String JavaDoc getArchiveAttribute() {
159         return getAttributeValue("archive");
160     }
161
162
163     /**
164      * Return the value of the attribute "standby". Refer to the
165      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
166      * documentation for details on the use of this attribute.
167      *
168      * @return The value of the attribute "standby"
169      * or an empty string if that attribute isn't defined.
170      */

171     public final String JavaDoc getStandbyAttribute() {
172         return getAttributeValue("standby");
173     }
174
175
176     /**
177      * Return the value of the attribute "height". Refer to the
178      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
179      * documentation for details on the use of this attribute.
180      *
181      * @return The value of the attribute "height"
182      * or an empty string if that attribute isn't defined.
183      */

184     public final String JavaDoc getHeightAttribute() {
185         return getAttributeValue("height");
186     }
187
188
189     /**
190      * Return the value of the attribute "width". Refer to the
191      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
192      * documentation for details on the use of this attribute.
193      *
194      * @return The value of the attribute "width"
195      * or an empty string if that attribute isn't defined.
196      */

197     public final String JavaDoc getWidthAttribute() {
198         return getAttributeValue("width");
199     }
200
201
202     /**
203      * Return the value of the attribute "usemap". Refer to the
204      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
205      * documentation for details on the use of this attribute.
206      *
207      * @return The value of the attribute "usemap"
208      * or an empty string if that attribute isn't defined.
209      */

210     public final String JavaDoc getUseMapAttribute() {
211         return getAttributeValue("usemap");
212     }
213
214
215     /**
216      * Return the value of the attribute "name". Refer to the
217      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
218      * documentation for details on the use of this attribute.
219      *
220      * @return The value of the attribute "name"
221      * or an empty string if that attribute isn't defined.
222      */

223     public final String JavaDoc getNameAttribute() {
224         return getAttributeValue("name");
225     }
226
227
228     /**
229      * Return the value of the attribute "tabindex". Refer to the
230      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
231      * documentation for details on the use of this attribute.
232      *
233      * @return The value of the attribute "tabindex"
234      * or an empty string if that attribute isn't defined.
235      */

236     public final String JavaDoc getTabIndexAttribute() {
237         return getAttributeValue("tabindex");
238     }
239
240
241     /**
242      * Return the value of the attribute "align". Refer to the
243      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
244      * documentation for details on the use of this attribute.
245      *
246      * @return The value of the attribute "align"
247      * or an empty string if that attribute isn't defined.
248      */

249     public final String JavaDoc getAlignAttribute() {
250         return getAttributeValue("align");
251     }
252
253
254     /**
255      * Return the value of the attribute "border". Refer to the
256      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
257      * documentation for details on the use of this attribute.
258      *
259      * @return The value of the attribute "border"
260      * or an empty string if that attribute isn't defined.
261      */

262     public final String JavaDoc getBorderAttribute() {
263         return getAttributeValue("border");
264     }
265
266
267     /**
268      * Return the value of the attribute "hspace". Refer to the
269      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
270      * documentation for details on the use of this attribute.
271      *
272      * @return The value of the attribute "hspace"
273      * or an empty string if that attribute isn't defined.
274      */

275     public final String JavaDoc getHspaceAttribute() {
276         return getAttributeValue("hspace");
277     }
278
279
280     /**
281      * Return the value of the attribute "vspace". Refer to the
282      * <a HREF='http://www.w3.org/TR/html401/'>HTML 4.01</a>
283      * documentation for details on the use of this attribute.
284      *
285      * @return The value of the attribute "vspace"
286      * or an empty string if that attribute isn't defined.
287      */

288     public final String JavaDoc getVspaceAttribute() {
289         return getAttributeValue("vspace");
290     }
291 }
292
Popular Tags