HTMLLIElementImplpublic class HTMLLIElementImpl extends HTMLElementImpl implements HTMLLIElement
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public HTMLLIElementImpl(HTMLDocumentImpl owner, String name)Constructor requires owner document.
super( owner, name );
|
Methods Summary |
---|
public java.lang.String | getType()
return getAttribute( "type" );
| public int | getValue()
return getInteger( getAttribute( "value" ) );
| public void | setType(java.lang.String type)
setAttribute( "type", type );
| public void | setValue(int value)
setAttribute( "value", String.valueOf( value ) );
|
|