HTMLOptGroupElementImplpublic class HTMLOptGroupElementImpl extends HTMLElementImpl implements HTMLOptGroupElement
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public HTMLOptGroupElementImpl(HTMLDocumentImpl owner, String name)Constructor requires owner document.
super( owner, name );
|
Methods Summary |
---|
public boolean | getDisabled()
return getBinary( "disabled" );
| public java.lang.String | getLabel()
return capitalize( getAttribute( "label" ) );
| public void | setDisabled(boolean disabled)
setAttribute( "disabled", disabled );
| public void | setLabel(java.lang.String label)
setAttribute( "label", label );
|
|