All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLAppletElement

public interface HTMLAppletElement
extends HTMLElement
An embedded Java applet. See the APPLET element definition in HTML 4.0. This element is deprecated in HTML 4.0.


Method Index

 o getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text.
 o getAlt()
Alternate text for user agents not rendering the normal content of this element.
 o getArchive()
Comma-separated archive list.
 o getCode()
Applet class file.
 o getCodeBase()
Optional base URI for applet.
 o getHeight()
Override height.
 o getHspace()
Horizontal space to the left and right of this image, applet, or object.
 o getName()
The name of the applet.
 o getObject()
Serialized applet file.
 o getVspace()
Vertical space above and below this image, applet, or object.
 o getWidth()
Override width.
 o setAlign(String)
 o setAlt(String)
 o setArchive(String)
 o setCode(String)
 o setCodeBase(String)
 o setHeight(String)
 o setHspace(String)
 o setName(String)
 o setObject(String)
 o setVspace(String)
 o setWidth(String)

Methods

 o getAlign
 public abstract String getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text. See the align attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setAlign
 public abstract void setAlign(String align)
 o getAlt
 public abstract String getAlt()
Alternate text for user agents not rendering the normal content of this element. See the alt attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setAlt
 public abstract void setAlt(String alt)
 o getArchive
 public abstract String getArchive()
Comma-separated archive list. See the archive attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setArchive
 public abstract void setArchive(String archive)
 o getCode
 public abstract String getCode()
Applet class file. See the code attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setCode
 public abstract void setCode(String code)
 o getCodeBase
 public abstract String getCodeBase()
Optional base URI for applet. See the codebase attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setCodeBase
 public abstract void setCodeBase(String codeBase)
 o getHeight
 public abstract String getHeight()
Override height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setHeight
 public abstract void setHeight(String height)
 o getHspace
 public abstract String getHspace()
Horizontal space to the left and right of this image, applet, or object. See the hspace attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setHspace
 public abstract void setHspace(String hspace)
 o getName
 public abstract String getName()
The name of the applet. See the name attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setName
 public abstract void setName(String name)
 o getObject
 public abstract String getObject()
Serialized applet file. See the object attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setObject
 public abstract void setObject(String object)
 o getVspace
 public abstract String getVspace()
Vertical space above and below this image, applet, or object. See the vspace attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setVspace
 public abstract void setVspace(String vspace)
 o getWidth
 public abstract String getWidth()
Override width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setWidth
 public abstract void setWidth(String width)

All Packages  Class Hierarchy  This Package  Previous  Next  Index