Save This Page
Home » openjdk-7 » org.w3c » dom » html2 » [javadoc | source]
org.w3c.dom.html2
public interface: HTMLParamElement [javadoc | source]

All Implemented Interfaces:
    HTMLElement

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

See also the Document Object Model (DOM) Level 2 HTML Specification.
Method from org.w3c.dom.html2.HTMLParamElement Summary:
getName,   getType,   getValue,   getValueType,   setName,   setType,   setValue,   setValueType
Method from org.w3c.dom.html2.HTMLParamElement Detail:
 public String getName()
    The name of a run-time parameter. See the name attribute definition in HTML 4.01.
 public String getType()
    Content type for the value attribute when valuetype has the value "ref". See the type attribute definition in HTML 4.01.
 public String getValue()
    The value of a run-time parameter. See the value attribute definition in HTML 4.01.
 public String getValueType()
    Information about the meaning of the value attribute value. See the valuetype attribute definition in HTML 4.01.
 public  void setName(String name)
    The name of a run-time parameter. See the name attribute definition in HTML 4.01.
 public  void setType(String type)
    Content type for the value attribute when valuetype has the value "ref". See the type attribute definition in HTML 4.01.
 public  void setValue(String value)
    The value of a run-time parameter. See the value attribute definition in HTML 4.01.
 public  void setValueType(String valueType)
    Information about the meaning of the value attribute value. See the valuetype attribute definition in HTML 4.01.