OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [classpath/] [external/] [w3c_dom/] [org/] [w3c/] [dom/] [html2/] [HTMLAppletElement.java] - Blame information for rev 768

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 768 jeremybenn
/*
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.
11
 */
12
 
13
package org.w3c.dom.html2;
14
 
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>.
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.01.
24
     * This attribute is deprecated in HTML 4.01.
25
     */
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.
31
     */
32
    public void setAlign(String align);
33
 
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.
38
     */
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.
44
     */
45
    public void setAlt(String alt);
46
 
47
    /**
48
     * Comma-separated archive list. See the archive attribute definition in
49
     * HTML 4.01. This attribute is deprecated in HTML 4.01.
50
     */
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.
55
     */
56
    public void setArchive(String archive);
57
 
58
    /**
59
     * Applet class file. See the code attribute definition in HTML 4.01. This
60
     * attribute is deprecated in HTML 4.01.
61
     */
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.
66
     */
67
    public void setCode(String code);
68
 
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.
72
     */
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.
77
     */
78
    public void setCodeBase(String codeBase);
79
 
80
    /**
81
     * Override height. See the height attribute definition in HTML 4.01. This
82
     * attribute is deprecated in HTML 4.01.
83
     */
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.
88
     */
89
    public void setHeight(String height);
90
 
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
96
     */
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
103
     */
104
    public void setHspace(int hspace);
105
 
106
    /**
107
     * The name of the applet. See the name attribute definition in HTML 4.01.
108
     * This attribute is deprecated in HTML 4.01.
109
     */
110
    public String getName();
111
    /**
112
     * The name of the applet. See the name attribute definition in HTML 4.01.
113
     * This attribute is deprecated in HTML 4.01.
114
     */
115
    public void setName(String name);
116
 
117
    /**
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
121
     */
122
    public String getObject();
123
    /**
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
127
     */
128
    public void setObject(String object);
129
 
130
    /**
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
135
     */
136
    public int getVspace();
137
    /**
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
142
     */
143
    public void setVspace(int vspace);
144
 
145
    /**
146
     * Override width. See the width attribute definition in HTML 4.01. This
147
     * attribute is deprecated in HTML 4.01.
148
     */
149
    public String getWidth();
150
    /**
151
     * Override width. See the width attribute definition in HTML 4.01. This
152
     * attribute is deprecated in HTML 4.01.
153
     */
154
    public void setWidth(String width);
155
 
156
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.