public interface

HTMLParamElement

implements HTMLElement
org.w3c.dom.html.HTMLParamElement

Class Overview

Parameters fed to the OBJECT element. See the PARAM element definition in HTML 4.0.

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

Summary

[Expand]
Inherited Constants
From interface org.w3c.dom.Node
Public Methods
abstract String getName()
The name of a run-time parameter.
abstract String getType()
Content type for the value attribute when valuetype has the value "ref".
abstract String getValue()
The value of a run-time parameter.
abstract String getValueType()
Information about the meaning of the value attribute value.
abstract void setName(String name)
abstract void setType(String type)
abstract void setValue(String value)
abstract void setValueType(String valueType)
[Expand]
Inherited Methods
From interface org.w3c.dom.Element
From interface org.w3c.dom.Node
From interface org.w3c.dom.html.HTMLElement

Public Methods

public abstract String getName ()

The name of a run-time parameter. See the name attribute definition in HTML 4.0.

public abstract String getType ()

Content type for the value attribute when valuetype has the value "ref". See the type attribute definition in HTML 4.0.

public abstract String getValue ()

The value of a run-time parameter. See the value attribute definition in HTML 4.0.

public abstract String getValueType ()

Information about the meaning of the value attribute value. See the valuetype attribute definition in HTML 4.0.

public abstract void setName (String name)

public abstract void setType (String type)

public abstract void setValue (String value)

public abstract void setValueType (String valueType)