FileDocCategorySizeDatePackage
HTMLUListElementImpl.javaAPI DocJava SE 5 API3754Fri Aug 26 14:55:28 BST 2005com.sun.org.apache.html.internal.dom

HTMLUListElementImpl

public class HTMLUListElementImpl extends HTMLElementImpl implements HTMLUListElement
version
$Revision: 1.6 $ $Date: 2003/05/08 20:13:09 $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLUListElement
see
com.sun.org.apache.xerces.internal.dom.ElementImpl

Fields Summary
Constructors Summary
public HTMLUListElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

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

        return getBinary( "compact" );
    
public java.lang.StringgetType()

        return getAttribute( "type" );
    
public voidsetCompact(boolean compact)

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

        setAttribute( "type", type );