HTMLMapElementImplpublic class HTMLMapElementImpl extends HTMLElementImpl implements HTMLMapElement
Fields Summary |
---|
private static final long | serialVersionUID | private HTMLCollection | _areas |
Constructors Summary |
---|
public HTMLMapElementImpl(HTMLDocumentImpl owner, String name)Constructor requires owner document.
super( owner, name );
|
Methods Summary |
---|
public org.w3c.dom.Node | cloneNode(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.HTMLCollection | getAreas()
if ( _areas == null )
_areas = new HTMLCollectionImpl( this, HTMLCollectionImpl.AREA );
return _areas;
| public java.lang.String | getName()
return getAttribute( "name" );
| public void | setName(java.lang.String name)
setAttribute( "name", name );
|
|