File: HTMLMapElement.java

package info (click to toggle)
xml-commons-external 1.4.01-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 3,468 kB
  • ctags: 4,950
  • sloc: java: 12,856; xml: 72; makefile: 30
file content (27 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
 * Technology, Institut National de Recherche en Informatique et en
 * Automatique, Keio University).
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
 */

package org.w3c.dom.html;

import org.w3c.dom.*;

/**
 * Client-side image map. See the MAP element definition in HTML 4.0.
 */
public interface HTMLMapElement extends HTMLElement {
  /**
   * The list of areas defined for the image map. 
   */
  public HTMLCollection     getAreas();
  /**
   * Names the map (for use with <code>usemap</code>). See the name attribute 
   * definition in HTML 4.0.
   */
  public String             getName();
  public void               setName(String name);
}