Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / external / w3c_dom / org / w3c / dom / html2 / HTMLAppletElement.java
blobf27b51afb7a2d9b2aa7ea56ff52d028142666e27
1 /*
2 * Copyright (c) 2003 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.
10 * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
13 package org.w3c.dom.html2;
15 /**
16 * An embedded Java applet. See the APPLET element definition in HTML 4.01.
17 * This element is deprecated in HTML 4.01.
18 * <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>.
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.01.
24 * This attribute is deprecated in HTML 4.01.
26 public String getAlign();
27 /**
28 * Aligns this object (vertically or horizontally) with respect to its
29 * surrounding text. See the align attribute definition in HTML 4.01.
30 * This attribute is deprecated in HTML 4.01.
32 public void setAlign(String align);
34 /**
35 * Alternate text for user agents not rendering the normal content of this
36 * element. See the alt attribute definition in HTML 4.01. This
37 * attribute is deprecated in HTML 4.01.
39 public String getAlt();
40 /**
41 * Alternate text for user agents not rendering the normal content of this
42 * element. See the alt attribute definition in HTML 4.01. This
43 * attribute is deprecated in HTML 4.01.
45 public void setAlt(String alt);
47 /**
48 * Comma-separated archive list. See the archive attribute definition in
49 * HTML 4.01. This attribute is deprecated in HTML 4.01.
51 public String getArchive();
52 /**
53 * Comma-separated archive list. See the archive attribute definition in
54 * HTML 4.01. This attribute is deprecated in HTML 4.01.
56 public void setArchive(String archive);
58 /**
59 * Applet class file. See the code attribute definition in HTML 4.01. This
60 * attribute is deprecated in HTML 4.01.
62 public String getCode();
63 /**
64 * Applet class file. See the code attribute definition in HTML 4.01. This
65 * attribute is deprecated in HTML 4.01.
67 public void setCode(String code);
69 /**
70 * Optional base URI [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>] for applet. See the codebase attribute definition in
71 * HTML 4.01. This attribute is deprecated in HTML 4.01.
73 public String getCodeBase();
74 /**
75 * Optional base URI [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>] for applet. See the codebase attribute definition in
76 * HTML 4.01. This attribute is deprecated in HTML 4.01.
78 public void setCodeBase(String codeBase);
80 /**
81 * Override height. See the height attribute definition in HTML 4.01. This
82 * attribute is deprecated in HTML 4.01.
84 public String getHeight();
85 /**
86 * Override height. See the height attribute definition in HTML 4.01. This
87 * attribute is deprecated in HTML 4.01.
89 public void setHeight(String height);
91 /**
92 * Horizontal space, in pixels, to the left and right of this image,
93 * applet, or object. See the hspace attribute definition in HTML 4.01.
94 * This attribute is deprecated in HTML 4.01.
95 * @version DOM Level 2
97 public int getHspace();
98 /**
99 * Horizontal space, in pixels, to the left and right of this image,
100 * applet, or object. See the hspace attribute definition in HTML 4.01.
101 * This attribute is deprecated in HTML 4.01.
102 * @version DOM Level 2
104 public void setHspace(int hspace);
107 * The name of the applet. See the name attribute definition in HTML 4.01.
108 * This attribute is deprecated in HTML 4.01.
110 public String getName();
112 * The name of the applet. See the name attribute definition in HTML 4.01.
113 * This attribute is deprecated in HTML 4.01.
115 public void setName(String name);
118 * The value of the "object" attribute. See the object attribute definition
119 * in HTML 4.01. This attribute is deprecated in HTML 4.01.
120 * @version DOM Level 2
122 public String getObject();
124 * The value of the "object" attribute. See the object attribute definition
125 * in HTML 4.01. This attribute is deprecated in HTML 4.01.
126 * @version DOM Level 2
128 public void setObject(String object);
131 * Vertical space, in pixels, above and below this image, applet, or
132 * object. See the vspace attribute definition in HTML 4.01. This
133 * attribute is deprecated in HTML 4.01.
134 * @version DOM Level 2
136 public int getVspace();
138 * Vertical space, in pixels, above and below this image, applet, or
139 * object. See the vspace attribute definition in HTML 4.01. This
140 * attribute is deprecated in HTML 4.01.
141 * @version DOM Level 2
143 public void setVspace(int vspace);
146 * Override width. See the width attribute definition in HTML 4.01. This
147 * attribute is deprecated in HTML 4.01.
149 public String getWidth();
151 * Override width. See the width attribute definition in HTML 4.01. This
152 * attribute is deprecated in HTML 4.01.
154 public void setWidth(String width);