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.
  • Method Details

    • getName

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

      void setName(java.lang.String name)
    • getType

      java.lang.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(java.lang.String type)
    • getValue

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

      void setValue(java.lang.String value)
    • getValueType

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

      void setValueType(java.lang.String valueType)