FileDocCategorySizeDatePackage
HTMLParamElementImpl.javaAPI DocApache Xerces 3.0.12426Fri Sep 14 20:33:54 BST 2007org.apache.html.dom

HTMLParamElementImpl

public class HTMLParamElementImpl extends HTMLElementImpl implements HTMLParamElement
xerces.internal
version
$Revision: 447255 $ $Date: 2006-09-18 01:36:42 -0400 (Mon, 18 Sep 2006) $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLParamElement
see
org.apache.xerces.dom.ElementImpl

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public HTMLParamElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public java.lang.StringgetName()


      
    
        return getAttribute( "name" );
    
public java.lang.StringgetType()

        return getAttribute( "type" );
    
public java.lang.StringgetValue()

        return getAttribute( "value" );
    
public java.lang.StringgetValueType()

        return capitalize( getAttribute( "valuetype" ) );
    
public voidsetName(java.lang.String name)

        setAttribute( "name", name );
    
public voidsetType(java.lang.String type)

        setAttribute( "type", type );
    
public voidsetValue(java.lang.String value)

        setAttribute( "value", value );
    
public voidsetValueType(java.lang.String valueType)

        setAttribute( "valuetype", valueType );