1 /* 2 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of 3 * Technology, Institut National de Recherche en Informatique et en 4 * Automatique, Keio University). 5 * All Rights Reserved. http://www.w3.org/Consortium/Legal/ 6 */ 7 8 package org.w3c.dom.html; 9 10 import org.w3c.dom; 11 12 /** 13 * Parameters fed to the <code>OBJECT</code> element. See the PARAM element 14 * definition in HTML 4.0. 15 */ 16 public interface HTMLParamElement extends HTMLElement { 17 /** 18 * The name of a run-time parameter. See the name attribute definition in 19 * HTML 4.0. 20 */ 21 public String getName(); 22 public void setName(String name); 23 /** 24 * Content type for the <code>value</code> attribute when 25 * <code>valuetype</code> has the value "ref". See the type attribute 26 * definition in HTML 4.0. 27 */ 28 public String getType(); 29 public void setType(String type); 30 /** 31 * The value of a run-time parameter. See the value attribute definition in 32 * HTML 4.0. 33 */ 34 public String getValue(); 35 public void setValue(String value); 36 /** 37 * Information about the meaning of the <code>value</code> attributevalue. 38 * See the valuetype attribute definition in HTML 4.0. 39 */ 40 public String getValueType(); 41 public void setValueType(String valueType); 42 } 43