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

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLOptGroupElement.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
 
 * Group options together in logical subdivisions. See the OPTGROUP element 
14
 
 * definition in HTML 4.0.
15
 
 */
16
 
public interface HTMLOptGroupElement extends HTMLElement {
17
 
  /**
18
 
   * The control is unavailable in this context. See the disabled attribute 
19
 
   * definition in HTML 4.0.
20
 
   */
21
 
  public boolean            getDisabled();
22
 
  public void               setDisabled(boolean disabled);
23
 
  /**
24
 
   * Assigns a label to this option group. See the label attribute definition 
25
 
   * in HTML 4.0.
26
 
   */
27
 
  public String             getLabel();
28
 
  public void               setLabel(String label);
29
 
}
30