~ubuntu-branches/ubuntu/karmic/libjaxp1.3-java/karmic

« back to all changes in this revision

Viewing changes to org/w3c/dom/html/HTMLMenuElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-08-03 10:30:58 UTC
  • Revision ID: james.westby@ubuntu.com-20060803103058-7jwwiqv9g8w9094d
Tags: upstream-1.3.03
ImportĀ upstreamĀ versionĀ 1.3.03

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
 * Menu list. See the MENU element definition in HTML 4.0. This element is 
 
14
 * deprecated in HTML 4.0.
 
15
 */
 
16
public interface HTMLMenuElement extends HTMLElement {
 
17
  /**
 
18
   * Reduce spacing between list items. See the compact attribute definition 
 
19
   * in HTML 4.0. This attribute is deprecated in HTML 4.0.
 
20
   */
 
21
  public boolean            getCompact();
 
22
  public void               setCompact(boolean compact);
 
23
}
 
24