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.
-
getAlign()
- Aligns this object (vertically or horizontally)
with respect to its surrounding text.
-
getAlt()
- Alternate text for user agents not rendering the normal content
of this element.
-
getArchive()
- Comma-separated archive list.
-
getCode()
- Applet class file.
-
getCodeBase()
- Optional base URI for applet.
-
getHeight()
- Override height.
-
getHspace()
- Horizontal space to the left and right of this image, applet, or object.
-
getName()
- The name of the applet.
-
getObject()
- Serialized applet file.
-
getVspace()
- Vertical space above and below this image, applet, or object.
-
getWidth()
- Override width.
-
setAlign(String)
-
-
setAlt(String)
-
-
setArchive(String)
-
-
setCode(String)
-
-
setCodeBase(String)
-
-
setHeight(String)
-
-
setHspace(String)
-
-
setName(String)
-
-
setObject(String)
-
-
setVspace(String)
-
-
setWidth(String)
-
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.
setAlign
public abstract void setAlign(String align)
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.
setAlt
public abstract void setAlt(String alt)
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.
setArchive
public abstract void setArchive(String archive)
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.
setCode
public abstract void setCode(String code)
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.
setCodeBase
public abstract void setCodeBase(String codeBase)
getHeight
public abstract String getHeight()
- Override height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
setHeight
public abstract void setHeight(String height)
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.
setHspace
public abstract void setHspace(String hspace)
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.
setName
public abstract void setName(String name)
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.
setObject
public abstract void setObject(String object)
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.
setVspace
public abstract void setVspace(String vspace)
getWidth
public abstract String getWidth()
- Override width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
setWidth
public abstract void setWidth(String width)
All Packages Class Hierarchy This Package Previous Next Index