
org.w3c.dom.html.HTMLParamElement Maven / Gradle / Ivy
The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
Parameters fed to the
OBJECT
element. See the
PARAM element definition
in HTML 4.0.
Property Summary
name
getName
setName
The name of a run-time parameter. See the
name attribute definition
in HTML 4.0.
type
getType
setType
Content type for the
value
attribute when
valuetype
has the value "ref". See the
type attribute definition
in HTML 4.0.
value
getValue
setValue
The value of a run-time parameter. See the
value attribute definition
in HTML 4.0.
valueType
getValueType
setValueType
Information about the meaning of the
value
attribute value. See the
valuetype attribute definition
in HTML 4.0.
*/
public interface HTMLParamElement
extends HTMLElement
{
/** Assigns the value of the name
property.
*/
void setName (String name);
/**
* Returns the value of the name
property.
*/
String getName ();
/** Assigns the value of the type
property.
*/
void setType (String type);
/**
* Returns the value of the type
property.
*/
String getType ();
/** Assigns the value of the value
property.
*/
void setValue (String value);
/**
* Returns the value of the value
property.
*/
String getValue ();
/** Assigns the value of the valueType
property.
*/
void setValueType (String valueType);
/**
* Returns the value of the valueType
property.
*/
String getValueType ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy