KickJava   Java API By Example, From Geeks To Geeks.

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


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 "applet".
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 HtmlApplet extends StyledElement {
51
52     /** the HTML tag represented by this element */
53     public static final String JavaDoc TAG_NAME = "applet";
54
55     /**
56      * Create an instance of HtmlApplet
57      *
58      * @param page The HtmlPage that contains this element.
59      * @param attributes the initial attributes
60      */

61     public HtmlApplet( 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 "codebase". 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 "codebase"
78      * or an empty string if that attribute isn't defined.
79      */

80     public final String JavaDoc getCodebaseAttribute() {
81         return getAttributeValue("codebase");
82     }
83
84
85     /**
86      * Return the value of the attribute "archive". 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 "archive"
91      * or an empty string if that attribute isn't defined.
92      */

93     public final String JavaDoc getArchiveAttribute() {
94         return getAttributeValue("archive");
95     }
96
97
98     /**
99      * Return the value of the attribute "code". 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 "code"
104      * or an empty string if that attribute isn't defined.
105      */

106     public final String JavaDoc getCodeAttribute() {
107         return getAttributeValue("code");
108     }
109
110
111     /**
112      * Return the value of the attribute "object". 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 "object"
117      * or an empty string if that attribute isn't defined.
118      */

119     public final String JavaDoc getObjectAttribute() {
120         return getAttributeValue("object");
121     }
122
123
124     /**
125      * Return the value of the attribute "alt". 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 "alt"
130      * or an empty string if that attribute isn't defined.
131      */

132     public final String JavaDoc getAltAttribute() {
133         return getAttributeValue("alt");
134     }
135
136
137     /**
138      * Return the value of the attribute "name". 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 "name"
143      * or an empty string if that attribute isn't defined.
144      */

145     public final String JavaDoc getNameAttribute() {
146         return getAttributeValue("name");
147     }
148
149
150     /**
151      * Return the value of the attribute "width". 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 "width"
156      * or an empty string if that attribute isn't defined.
157      */

158     public final String JavaDoc getWidthAttribute() {
159         return getAttributeValue("width");
160     }
161
162
163     /**
164      * Return the value of the attribute "height". 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 "height"
169      * or an empty string if that attribute isn't defined.
170      */

171     public final String JavaDoc getHeightAttribute() {
172         return getAttributeValue("height");
173     }
174
175
176     /**
177      * Return the value of the attribute "align". 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 "align"
182      * or an empty string if that attribute isn't defined.
183      */

184     public final String JavaDoc getAlignAttribute() {
185         return getAttributeValue("align");
186     }
187
188
189     /**
190      * Return the value of the attribute "hspace". 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 "hspace"
195      * or an empty string if that attribute isn't defined.
196      */

197     public final String JavaDoc getHspaceAttribute() {
198         return getAttributeValue("hspace");
199     }
200
201
202     /**
203      * Return the value of the attribute "vspace". 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 "vspace"
208      * or an empty string if that attribute isn't defined.
209      */

210     public final String JavaDoc getVspaceAttribute() {
211         return getAttributeValue("vspace");
212     }
213 }
214
Popular Tags