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.
-
getName()
- The name of a run-time parameter.
-
getType()
- Content type for the value attribute when
valuetype has the value "ref".
-
getValue()
- The value of a run-time parameter.
-
getValueType()
- Information about the meaning of the value attribute
value.
-
setName(String)
-
-
setType(String)
-
-
setValue(String)
-
-
setValueType(String)
-
getName
public abstract String getName()
- The name of a run-time parameter. See the name attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
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.
setType
public abstract void setType(String type)
getValue
public abstract String getValue()
- The value of a run-time parameter. See the value attribute definition in HTML 4.0.
setValue
public abstract void setValue(String value)
getValueType
public abstract String getValueType()
- Information about the meaning of the value attribute
value. See the valuetype attribute definition in HTML 4.0.
setValueType
public abstract void setValueType(String valueType)
All Packages Class Hierarchy This Package Previous Next Index