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

HTMLMapElementImpl

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

Fields Summary
private HTMLCollection
_areas
Constructors Summary
public HTMLMapElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public org.w3c.dom.html.HTMLCollectiongetAreas()

        if ( _areas == null )
            _areas = new HTMLCollectionImpl( this, HTMLCollectionImpl.AREA );
        return _areas;
    
public java.lang.StringgetName()

        return getAttribute( "name" );
    
public voidsetName(java.lang.String name)

        setAttribute( "name", name );