org.w3c.dom.html.HTMLMapElement Maven / Gradle / Ivy
The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
Client-side image map. See the
MAP element definition
in HTML 4.0.
Property Summary
areas
getAreas
The list of areas defined for the image map.
name
getName
setName
Names the map (for use with
usemap
). See the
name attribute definition
in HTML 4.0.
*/
public interface HTMLMapElement
extends HTMLElement
{
/**
* Returns the value of the areas
property.
*/
HTMLCollection getAreas ();
/** Assigns the value of the name
property.
*/
void setName (String name);
/**
* Returns the value of the name
property.
*/
String getName ();
}