All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLParamElement

public interface HTMLParamElement
extends HTMLElement
Parameters fed to the OBJECT element. See the PARAM element definition in HTML 4.0.


Method Index

 o getName()
The name of a run-time parameter.
 o getType()
Content type for the value attribute when valuetype has the value "ref".
 o getValue()
The value of a run-time parameter.
 o getValueType()
Information about the meaning of the value attribute value.
 o setName(String)
 o setType(String)
 o setValue(String)
 o setValueType(String)

Methods

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

 o setName
 public abstract void setName(String name)
 o getType
 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.

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

 o setValue
 public abstract void setValue(String value)
 o getValueType
 public abstract String getValueType()
Information about the meaning of the value attribute value. See the valuetype attribute definition in HTML 4.0.

 o setValueType
 public abstract void setValueType(String valueType)

All Packages  Class Hierarchy  This Package  Previous  Next  Index