KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > html2 > HTMLAppletElement


1 /*
2     GNU LESSER GENERAL PUBLIC LICENSE
3     Copyright (C) 2006 The Lobo Project
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Lesser General Public
7     License as published by the Free Software Foundation; either
8     version 2.1 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13     Lesser General Public License for more details.
14
15     You should have received a copy of the GNU Lesser General Public
16     License along with this library; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19     Contact info: xamjadmin@users.sourceforge.net
20 */

21 /*
22  * Copyright (c) 2003 World Wide Web Consortium,
23  * (Massachusetts Institute of Technology, Institut National de
24  * Recherche en Informatique et en Automatique, Keio University). All
25  * Rights Reserved. This program is distributed under the W3C's Software
26  * Intellectual Property License. This program is distributed in the
27  * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
28  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
29  * PURPOSE.
30  * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
31  */

32
33 package org.w3c.dom.html2;
34
35 /**
36  * An embedded Java applet. See the APPLET element definition in HTML 4.01.
37  * This element is deprecated in HTML 4.01.
38  * <p>See also the <a HREF='http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109'>Document Object Model (DOM) Level 2 HTML Specification</a>.
39  */

40 public interface HTMLAppletElement extends HTMLElement {
41     /**
42      * Aligns this object (vertically or horizontally) with respect to its
43      * surrounding text. See the align attribute definition in HTML 4.01.
44      * This attribute is deprecated in HTML 4.01.
45      */

46     public String JavaDoc getAlign();
47     /**
48      * Aligns this object (vertically or horizontally) with respect to its
49      * surrounding text. See the align attribute definition in HTML 4.01.
50      * This attribute is deprecated in HTML 4.01.
51      */

52     public void setAlign(String JavaDoc align);
53
54     /**
55      * Alternate text for user agents not rendering the normal content of this
56      * element. See the alt attribute definition in HTML 4.01. This
57      * attribute is deprecated in HTML 4.01.
58      */

59     public String JavaDoc getAlt();
60     /**
61      * Alternate text for user agents not rendering the normal content of this
62      * element. See the alt attribute definition in HTML 4.01. This
63      * attribute is deprecated in HTML 4.01.
64      */

65     public void setAlt(String JavaDoc alt);
66
67     /**
68      * Comma-separated archive list. See the archive attribute definition in
69      * HTML 4.01. This attribute is deprecated in HTML 4.01.
70      */

71     public String JavaDoc getArchive();
72     /**
73      * Comma-separated archive list. See the archive attribute definition in
74      * HTML 4.01. This attribute is deprecated in HTML 4.01.
75      */

76     public void setArchive(String JavaDoc archive);
77
78     /**
79      * Applet class file. See the code attribute definition in HTML 4.01. This
80      * attribute is deprecated in HTML 4.01.
81      */

82     public String JavaDoc getCode();
83     /**
84      * Applet class file. See the code attribute definition in HTML 4.01. This
85      * attribute is deprecated in HTML 4.01.
86      */

87     public void setCode(String JavaDoc code);
88
89     /**
90      * Optional base URI [<a HREF='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>] for applet. See the codebase attribute definition in
91      * HTML 4.01. This attribute is deprecated in HTML 4.01.
92      */

93     public String JavaDoc getCodeBase();
94     /**
95      * Optional base URI [<a HREF='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>] for applet. See the codebase attribute definition in
96      * HTML 4.01. This attribute is deprecated in HTML 4.01.
97      */

98     public void setCodeBase(String JavaDoc codeBase);
99
100     /**
101      * Override height. See the height attribute definition in HTML 4.01. This
102      * attribute is deprecated in HTML 4.01.
103      */

104     public String JavaDoc getHeight();
105     /**
106      * Override height. See the height attribute definition in HTML 4.01. This
107      * attribute is deprecated in HTML 4.01.
108      */

109     public void setHeight(String JavaDoc height);
110
111     /**
112      * Horizontal space, in pixels, to the left and right of this image,
113      * applet, or object. See the hspace attribute definition in HTML 4.01.
114      * This attribute is deprecated in HTML 4.01.
115      * @version DOM Level 2
116      */

117     public int getHspace();
118     /**
119      * Horizontal space, in pixels, to the left and right of this image,
120      * applet, or object. See the hspace attribute definition in HTML 4.01.
121      * This attribute is deprecated in HTML 4.01.
122      * @version DOM Level 2
123      */

124     public void setHspace(int hspace);
125
126     /**
127      * The name of the applet. See the name attribute definition in HTML 4.01.
128      * This attribute is deprecated in HTML 4.01.
129      */

130     public String JavaDoc getName();
131     /**
132      * The name of the applet. See the name attribute definition in HTML 4.01.
133      * This attribute is deprecated in HTML 4.01.
134      */

135     public void setName(String JavaDoc name);
136
137     /**
138      * The value of the "object" attribute. See the object attribute definition
139      * in HTML 4.01. This attribute is deprecated in HTML 4.01.
140      * @version DOM Level 2
141      */

142     public String JavaDoc getObject();
143     /**
144      * The value of the "object" attribute. See the object attribute definition
145      * in HTML 4.01. This attribute is deprecated in HTML 4.01.
146      * @version DOM Level 2
147      */

148     public void setObject(String JavaDoc object);
149
150     /**
151      * Vertical space, in pixels, above and below this image, applet, or
152      * object. See the vspace attribute definition in HTML 4.01. This
153      * attribute is deprecated in HTML 4.01.
154      * @version DOM Level 2
155      */

156     public int getVspace();
157     /**
158      * Vertical space, in pixels, above and below this image, applet, or
159      * object. See the vspace attribute definition in HTML 4.01. This
160      * attribute is deprecated in HTML 4.01.
161      * @version DOM Level 2
162      */

163     public void setVspace(int vspace);
164
165     /**
166      * Override width. See the width attribute definition in HTML 4.01. This
167      * attribute is deprecated in HTML 4.01.
168      */

169     public String JavaDoc getWidth();
170     /**
171      * Override width. See the width attribute definition in HTML 4.01. This
172      * attribute is deprecated in HTML 4.01.
173      */

174     public void setWidth(String JavaDoc width);
175
176 }
177
Popular Tags