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

HTMLOptGroupElementImpl

public class HTMLOptGroupElementImpl extends HTMLElementImpl implements HTMLOptGroupElement
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.HTMLOptGroupElement
see
org.apache.xerces.dom.ElementImpl

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

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public booleangetDisabled()


      
    
        return getBinary( "disabled" );
    
public java.lang.StringgetLabel()

        return capitalize( getAttribute( "label" ) );
    
public voidsetDisabled(boolean disabled)

        setAttribute( "disabled", disabled );
    
public voidsetLabel(java.lang.String label)

        setAttribute( "label", label );