org.w3c.dom.html

Interface HTMLParamElement

public interface HTMLParamElement extends HTMLElement

Parameters fed to the OBJECT element. See the PARAM element definition in HTML 4.0.
Method Summary
StringgetName()
The name of a run-time parameter.
StringgetType()
Content type for the value attribute when valuetype has the value "ref".
StringgetValue()
The value of a run-time parameter.
StringgetValueType()
Information about the meaning of the value attributevalue.
voidsetName(String name)
voidsetType(String type)
voidsetValue(String value)
voidsetValueType(String valueType)

Method Detail

getName

public String getName()
The name of a run-time parameter. See the name attribute definition in HTML 4.0.

getType

public String getType()
Content type for the value attribute when valuetype has the value "ref". See the type attribute definition in HTML 4.0.

getValue

public String getValue()
The value of a run-time parameter. See the value attribute definition in HTML 4.0.

getValueType

public String getValueType()
Information about the meaning of the value attributevalue. See the valuetype attribute definition in HTML 4.0.

setName

public void setName(String name)

setType

public void setType(String type)

setValue

public void setValue(String value)

setValueType

public void setValueType(String valueType)