FileDocCategorySizeDatePackage
HTMLMapElementImpl.javaAPI DocApache Xerces 3.0.12421Fri Sep 14 20:33:54 BST 2007org.apache.html.dom

HTMLMapElementImpl

public class HTMLMapElementImpl extends HTMLElementImpl implements HTMLMapElement
xerces.internal
version
$Revision: 447255 $ $Date: 2006-09-18 01:36:42 -0400 (Mon, 18 Sep 2006) $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLMapElement
see
org.apache.xerces.dom.ElementImpl

Fields Summary
private static final long
serialVersionUID
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.NodecloneNode(boolean deep)
Explicit implementation of cloneNode() to ensure that cache used for getAreas() gets cleared.

        HTMLMapElementImpl clonedNode = (HTMLMapElementImpl)super.cloneNode( deep );
        clonedNode._areas = null;
        return clonedNode;
    
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 );