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

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLOListElement.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
 
 * Ordered list. See the OL element definition in HTML 4.0.
14
 
 */
15
 
public interface HTMLOListElement extends HTMLElement {
16
 
  /**
17
 
   * Reduce spacing between list items. See the compact attribute definition 
18
 
   * in HTML 4.0. This attribute is deprecated in HTML 4.0.
19
 
   */
20
 
  public boolean            getCompact();
21
 
  public void               setCompact(boolean compact);
22
 
  /**
23
 
   * Starting sequence number. See the start attribute definition in HTML 4.0. 
24
 
   * This attribute is deprecated in HTML 4.0.
25
 
   */
26
 
  public int                getStart();
27
 
  public void               setStart(int start);
28
 
  /**
29
 
   * Numbering style. See the type attribute definition in HTML 4.0. This 
30
 
   * attribute is deprecated in HTML 4.0.
31
 
   */
32
 
  public String             getType();
33
 
  public void               setType(String type);
34
 
}
35