Module jdk.xml.dom

Interface HTMLParamElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLParamElement extends HTMLElement
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.

Since:
1.4, DOM Level 2
  • Method Details

    • getName

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

      void setName(String name)
    • getType

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

      void setType(String type)
    • getValue

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

      void setValue(String value)
    • getValueType

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

      void setValueType(String valueType)