FileDocCategorySizeDatePackage
HTMLAppletElement.javaAPI DocJava SE 5 API3560Fri Aug 26 14:58:40 BST 2005org.w3c.dom.html

HTMLAppletElement

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

See also the Document Object Model (DOM) Level 2 Specification.

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetAlign()
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.

public java.lang.StringgetAlt()
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.

public java.lang.StringgetArchive()
Comma-separated archive list. See the archive attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public java.lang.StringgetCode()
Applet class file. See the code attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public java.lang.StringgetCodeBase()
Optional base URI for applet. See the codebase attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public java.lang.StringgetHeight()
Override height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public java.lang.StringgetHspace()
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.

public java.lang.StringgetName()
The name of the applet. See the name attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public java.lang.StringgetObject()
Serialized applet file. See the object attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public java.lang.StringgetVspace()
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.

public java.lang.StringgetWidth()
Override width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public voidsetAlign(java.lang.String align)

public voidsetAlt(java.lang.String alt)

public voidsetArchive(java.lang.String archive)

public voidsetCode(java.lang.String code)

public voidsetCodeBase(java.lang.String codeBase)

public voidsetHeight(java.lang.String height)

public voidsetHspace(java.lang.String hspace)

public voidsetName(java.lang.String name)

public voidsetObject(java.lang.String object)

public voidsetVspace(java.lang.String vspace)

public voidsetWidth(java.lang.String width)