KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Copyright (c) 2000 World Wide Web Consortium,
3  * (Massachusetts Institute of Technology, Institut National de
4  * Recherche en Informatique et en Automatique, Keio University). All
5  * Rights Reserved. This program is distributed under the W3C's Software
6  * Intellectual Property License. This program is distributed in the
7  * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
10  * details.
11  */

12
13 package org.w3c.dom.html;
14
15 /**
16  * An embedded Java applet. See the APPLET element definition in HTML 4.0.
17  * This element is deprecated in HTML 4.0.
18  * <p>See also the <a HREF='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
19  */

20 public interface HTMLAppletElement extends HTMLElement {
21     /**
22      * Aligns this object (vertically or horizontally) with respect to its
23      * surrounding text. See the align attribute definition in HTML 4.0.
24      * This attribute is deprecated in HTML 4.0.
25      */

26     public String JavaDoc getAlign();
27     public void setAlign(String JavaDoc align);
28
29     /**
30      * Alternate text for user agents not rendering the normal content of
31      * this element. See the alt attribute definition in HTML 4.0. This
32      * attribute is deprecated in HTML 4.0.
33      */

34     public String JavaDoc getAlt();
35     public void setAlt(String JavaDoc alt);
36
37     /**
38      * Comma-separated archive list. See the archive attribute definition in
39      * HTML 4.0. This attribute is deprecated in HTML 4.0.
40      */

41     public String JavaDoc getArchive();
42     public void setArchive(String JavaDoc archive);
43
44     /**
45      * Applet class file. See the code attribute definition in HTML 4.0.
46      * This attribute is deprecated in HTML 4.0.
47      */

48     public String JavaDoc getCode();
49     public void setCode(String JavaDoc code);
50
51     /**
52      * Optional base URI for applet. See the codebase attribute definition
53      * in HTML 4.0. This attribute is deprecated in HTML 4.0.
54      */

55     public String JavaDoc getCodeBase();
56     public void setCodeBase(String JavaDoc codeBase);
57
58     /**
59      * Override height. See the height attribute definition in HTML 4.0.
60      * This attribute is deprecated in HTML 4.0.
61      */

62     public String JavaDoc getHeight();
63     public void setHeight(String JavaDoc height);
64
65     /**
66      * Horizontal space to the left and right of this image, applet, or
67      * object. See the hspace attribute definition in HTML 4.0. This
68      * attribute is deprecated in HTML 4.0.
69      */

70     public String JavaDoc getHspace();
71     public void setHspace(String JavaDoc hspace);
72
73     /**
74      * The name of the applet. See the name attribute definition in HTML
75      * 4.0. This attribute is deprecated in HTML 4.0.
76      */

77     public String JavaDoc getName();
78     public void setName(String JavaDoc name);
79
80     /**
81      * Serialized applet file. See the object attribute definition in HTML
82      * 4.0. This attribute is deprecated in HTML 4.0.
83      */

84     public String JavaDoc getObject();
85     public void setObject(String JavaDoc object);
86
87     /**
88      * Vertical space above and below this image, applet, or object. See the
89      * vspace attribute definition in HTML 4.0. This attribute is deprecated
90      * in HTML 4.0.
91      */

92     public String JavaDoc getVspace();
93     public void setVspace(String JavaDoc vspace);
94
95     /**
96      * Override width. See the width attribute definition in HTML 4.0. This
97      * attribute is deprecated in HTML 4.0.
98      */

99     public String JavaDoc getWidth();
100     public void setWidth(String JavaDoc width);
101
102 }
103
104
Popular Tags