API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.html. HTMLObjectElement View Source
Author(s)
Since
Version
Serial
Hierarchy
 Node
      Element
          HTMLElement
              HTMLObjectElement
Subinterfaces
Description
public interface HTMLObjectElement
  Generic embedded object.
See also:   
Methods
Hide/Show inherited methods
public String getAlign ()
  Aligns this object (vertically or horizontally) with respect to its surrounding text.
public String getArchive ()
  Space-separated list of archives.
public String getBorder ()
  Width of border around the object.
public String getCode ()
  Applet class file.
public String getCodeBase ()
  Base URI for classid , data , and archive attributes.
public String getCodeType ()
  Content type for data downloaded via classid attribute.
public Document getContentDocument ()
  The document this object contains, if there is any and it is available, or null otherwise.
public String getData ()
  A URI specifying the location of the object's data.
public boolean getDeclare ()
  Declare (for future reference), but do not instantiate, this object.
public HTMLFormElement getForm ()
  Returns the FORM element containing this control.
public String getHeight ()
  Override height.
public String getHspace ()
  Horizontal space to the left and right of this image, applet, or object.
public String getName ()
  Form control or object name when submitted with a form.
public String getStandby ()
  Message to render while loading the object.
public int getTabIndex ()
  Index that represents the element's position in the tabbing order.
public String getType ()
  Content type for data downloaded via data attribute.
public String getUseMap ()
  Use client-side image map.
public String getVspace ()
  Vertical space above and below this image, applet, or object.
public String getWidth ()
  Override width.
public void setAlign (String align)
public void setArchive (String archive)
public void setBorder (String border)
public void setCode (String code)
public void setCodeBase (String codeBase)
public void setCodeType (String codeType)
public void setData (String data)
public void setDeclare (boolean declare)
public void setHeight (String height)
public void setHspace (String hspace)
public void setName (String name)
public void setStandby (String standby)
public void setTabIndex (int tabIndex)
public void setType (String type)
public void setUseMap (String useMap)
public void setVspace (String vspace)
public void setWidth (String width)
Fields
Hide/Show inherited fields
publicfinalstatic short ATTRIBUTE_NODE = "2" [Inherited From HTMLElement]
The node is an Attr.
publicfinalstatic short CDATA_SECTION_NODE = "4" [Inherited From HTMLElement]
The node is a CDATASection.
publicfinalstatic short COMMENT_NODE = "8" [Inherited From HTMLElement]
The node is a Comment.
publicfinalstatic short DOCUMENT_FRAGMENT_NODE = "11" [Inherited From HTMLElement]
The node is a DocumentFragment.
publicfinalstatic short DOCUMENT_NODE = "9" [Inherited From HTMLElement]
The node is a Document.
publicfinalstatic short DOCUMENT_POSITION_CONTAINED_BY = "16" [Inherited From HTMLElement]
  The node is contained by the reference node.
publicfinalstatic short DOCUMENT_POSITION_CONTAINS = "8" [Inherited From HTMLElement]
  The node contains the reference node.
publicfinalstatic short DOCUMENT_POSITION_DISCONNECTED = "1" [Inherited From HTMLElement]
  The two nodes are disconnected.
publicfinalstatic short DOCUMENT_POSITION_FOLLOWING = "4" [Inherited From HTMLElement]
The node follows the reference node.
publicfinalstatic short DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = "32" [Inherited From HTMLElement]
The determination of preceding versus following is implementation-specific.
publicfinalstatic short DOCUMENT_POSITION_PRECEDING = "2" [Inherited From HTMLElement]
The second node precedes the reference node.
publicfinalstatic short DOCUMENT_TYPE_NODE = "10" [Inherited From HTMLElement]
The node is a DocumentType.
publicfinalstatic short ELEMENT_NODE = "1" [Inherited From HTMLElement]
The node is an Element.
publicfinalstatic short ENTITY_NODE = "6" [Inherited From HTMLElement]
The node is an Entity.
publicfinalstatic short ENTITY_REFERENCE_NODE = "5" [Inherited From HTMLElement]
The node is an EntityReference.
publicfinalstatic short NOTATION_NODE = "12" [Inherited From HTMLElement]
The node is a Notation.
publicfinalstatic short PROCESSING_INSTRUCTION_NODE = "7" [Inherited From HTMLElement]
The node is a ProcessingInstruction.
publicfinalstatic short TEXT_NODE = "3" [Inherited From HTMLElement]
The node is a Text node.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar