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

HTMLObjectElement

public interface HTMLObjectElement implements HTMLElement
Generic embedded object. Note. In principle, all properties on the object element are read-write but in some environments some properties may be read-only once the underlying object is instantiated. See the OBJECT element definition 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.StringgetArchive()
Space-separated list of archives. See the archive attribute definition in HTML 4.0.

public java.lang.StringgetBorder()
Width of border around the object. See the border 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 for HTMLAppletElement.

public java.lang.StringgetCodeBase()
Base URI for classid , data , and archive attributes. See the codebase attribute definition in HTML 4.0.

public java.lang.StringgetCodeType()
Content type for data downloaded via classid attribute. See the codetype attribute definition in HTML 4.0.

public org.w3c.dom.DocumentgetContentDocument()
The document this object contains, if there is any and it is available, or null otherwise.

since
DOM Level 2

public java.lang.StringgetData()
A URI specifying the location of the object's data. See the data attribute definition in HTML 4.0.

public booleangetDeclare()
Declare (for future reference), but do not instantiate, this object. See the declare attribute definition in HTML 4.0.

public org.w3c.dom.html.HTMLFormElementgetForm()
Returns the FORM element containing this control. Returns null if this control is not within the context of a form.

public java.lang.StringgetHeight()
Override height. See the height attribute definition 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()
Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.

public java.lang.StringgetStandby()
Message to render while loading the object. See the standby attribute definition in HTML 4.0.

public intgetTabIndex()
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.0.

public java.lang.StringgetType()
Content type for data downloaded via data attribute. See the type attribute definition in HTML 4.0.

public java.lang.StringgetUseMap()
Use client-side image map. See the usemap attribute definition 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.

public voidsetAlign(java.lang.String align)

public voidsetArchive(java.lang.String archive)

public voidsetBorder(java.lang.String border)

public voidsetCode(java.lang.String code)

public voidsetCodeBase(java.lang.String codeBase)

public voidsetCodeType(java.lang.String codeType)

public voidsetData(java.lang.String data)

public voidsetDeclare(boolean declare)

public voidsetHeight(java.lang.String height)

public voidsetHspace(java.lang.String hspace)

public voidsetName(java.lang.String name)

public voidsetStandby(java.lang.String standby)

public voidsetTabIndex(int tabIndex)

public voidsetType(java.lang.String type)

public voidsetUseMap(java.lang.String useMap)

public voidsetVspace(java.lang.String vspace)

public voidsetWidth(java.lang.String width)