FileDocCategorySizeDatePackage
HTMLParamElement.javaAPI DocJava SE 5 API1758Fri Aug 26 14:58:40 BST 2005org.w3c.dom.html

HTMLParamElement

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

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetName()
The name of a run-time parameter. See the name attribute definition in HTML 4.0.

public java.lang.StringgetType()
Content type for the value attribute when valuetype has the value "ref". See the type attribute definition in HTML 4.0.

public java.lang.StringgetValue()
The value of a run-time parameter. See the value attribute definition in HTML 4.0.

public java.lang.StringgetValueType()
Information about the meaning of the value attribute value. See the valuetype attribute definition in HTML 4.0.

public voidsetName(java.lang.String name)

public voidsetType(java.lang.String type)

public voidsetValue(java.lang.String value)

public voidsetValueType(java.lang.String valueType)