~ubuntu-branches/ubuntu/karmic/libxerces2-java/karmic

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLLabelElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Charles Majola
  • Date: 2005-12-09 11:58:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051209115821-ppifmmty1jv59hik
Tags: 2.6.2-3ubuntu3
Fix Build depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
3
 
 * Technology, Institut National de Recherche en Informatique et en
4
 
 * Automatique, Keio University).
5
 
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
6
 
 */
7
 
 
8
 
package org.w3c.dom.html;
9
 
 
10
 
import org.w3c.dom.*;
11
 
 
12
 
/**
13
 
 * Form field label text. See the LABEL element definition in HTML 4.0.
14
 
 */
15
 
public interface HTMLLabelElement extends HTMLElement {
16
 
  /**
17
 
   * Returns the <code>FORM</code> element containing this control.Returns 
18
 
   * null if this control is not within the context of a form. 
19
 
   */
20
 
  public HTMLFormElement    getForm();
21
 
  /**
22
 
   * A single character access key to give access to the form control. See the 
23
 
   * accesskey attribute definition in HTML 4.0.
24
 
   */
25
 
  public String             getAccessKey();
26
 
  public void               setAccessKey(String accessKey);
27
 
  /**
28
 
   * This attribute links this label with another form controlby 
29
 
   * <code>id</code> attribute. See the for attribute definition in HTML 4.0.
30
 
   */
31
 
  public String             getHtmlFor();
32
 
  public void               setHtmlFor(String htmlFor);
33
 
}
34