HTMLOListElementImplpublic class HTMLOListElementImpl extends HTMLElementImpl implements HTMLOListElement
Constructors Summary |
---|
public HTMLOListElementImpl(HTMLDocumentImpl owner, String name)Constructor requires owner document.
super( owner, name );
|
Methods Summary |
---|
public boolean | getCompact()
return getBinary( "compact" );
| public int | getStart()
return getInteger( getAttribute( "start" ) );
| public java.lang.String | getType()
return getAttribute( "type" );
| public void | setCompact(boolean compact)
setAttribute( "compact", compact );
| public void | setStart(int start)
setAttribute( "start", String.valueOf( start ) );
| public void | setType(java.lang.String type)
setAttribute( "type", type );
|
|