001: /*
002: * Copyright (c) 2000 World Wide Web Consortium,
003: * (Massachusetts Institute of Technology, Institut National de
004: * Recherche en Informatique et en Automatique, Keio University). All
005: * Rights Reserved. This program is distributed under the W3C's Software
006: * Intellectual Property License. This program is distributed in the
007: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
008: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
009: * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
010: * details.
011: */
012:
013: package org.w3c.dom.html;
014:
015: /**
016: * An embedded Java applet. See the APPLET element definition in HTML 4.0.
017: * This element is deprecated in HTML 4.0.
018: * <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>.
019: */
020: public interface HTMLAppletElement extends HTMLElement {
021: /**
022: * Aligns this object (vertically or horizontally) with respect to its
023: * surrounding text. See the align attribute definition in HTML 4.0.
024: * This attribute is deprecated in HTML 4.0.
025: */
026: public String getAlign();
027:
028: public void setAlign(String align);
029:
030: /**
031: * Alternate text for user agents not rendering the normal content of
032: * this element. See the alt attribute definition in HTML 4.0. This
033: * attribute is deprecated in HTML 4.0.
034: */
035: public String getAlt();
036:
037: public void setAlt(String alt);
038:
039: /**
040: * Comma-separated archive list. See the archive attribute definition in
041: * HTML 4.0. This attribute is deprecated in HTML 4.0.
042: */
043: public String getArchive();
044:
045: public void setArchive(String archive);
046:
047: /**
048: * Applet class file. See the code attribute definition in HTML 4.0.
049: * This attribute is deprecated in HTML 4.0.
050: */
051: public String getCode();
052:
053: public void setCode(String code);
054:
055: /**
056: * Optional base URI for applet. See the codebase attribute definition
057: * in HTML 4.0. This attribute is deprecated in HTML 4.0.
058: */
059: public String getCodeBase();
060:
061: public void setCodeBase(String codeBase);
062:
063: /**
064: * Override height. See the height attribute definition in HTML 4.0.
065: * This attribute is deprecated in HTML 4.0.
066: */
067: public String getHeight();
068:
069: public void setHeight(String height);
070:
071: /**
072: * Horizontal space to the left and right of this image, applet, or
073: * object. See the hspace attribute definition in HTML 4.0. This
074: * attribute is deprecated in HTML 4.0.
075: */
076: public String getHspace();
077:
078: public void setHspace(String hspace);
079:
080: /**
081: * The name of the applet. See the name attribute definition in HTML
082: * 4.0. This attribute is deprecated in HTML 4.0.
083: */
084: public String getName();
085:
086: public void setName(String name);
087:
088: /**
089: * Serialized applet file. See the object attribute definition in HTML
090: * 4.0. This attribute is deprecated in HTML 4.0.
091: */
092: public String getObject();
093:
094: public void setObject(String object);
095:
096: /**
097: * Vertical space above and below this image, applet, or object. See the
098: * vspace attribute definition in HTML 4.0. This attribute is deprecated
099: * in HTML 4.0.
100: */
101: public String getVspace();
102:
103: public void setVspace(String vspace);
104:
105: /**
106: * Override width. See the width attribute definition in HTML 4.0. This
107: * attribute is deprecated in HTML 4.0.
108: */
109: public String getWidth();
110:
111: public void setWidth(String width);
112:
113: }
|