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

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLBodyElement.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
 
 * The HTML document body. This element is always present in the DOM API,even 
14
 
 * if the tags are not present in the source document. See the BODY element 
15
 
 * definition in HTML 4.0.
16
 
 */
17
 
public interface HTMLBodyElement extends HTMLElement {
18
 
  /**
19
 
   * Color of active links (after mouse-button down, but beforemouse-button 
20
 
   * up). See the alink attribute definition in HTML 4.0. This attribute is 
21
 
   * deprecated in HTML 4.0.
22
 
   */
23
 
  public String             getALink();
24
 
  public void               setALink(String aLink);
25
 
  /**
26
 
   * URI of the background texture tile image. See the background attribute 
27
 
   * definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
28
 
   */
29
 
  public String             getBackground();
30
 
  public void               setBackground(String background);
31
 
  /**
32
 
   * Document background color. See the bgcolor attribute definition in HTML 
33
 
   * 4.0. This attribute is deprecated in HTML 4.0.
34
 
   */
35
 
  public String             getBgColor();
36
 
  public void               setBgColor(String bgColor);
37
 
  /**
38
 
   * Color of links that are not active and unvisited. See the link attribute 
39
 
   * definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
40
 
   */
41
 
  public String             getLink();
42
 
  public void               setLink(String link);
43
 
  /**
44
 
   * Document text color. See the text attribute definition in HTML 4.0. This 
45
 
   * attribute is deprecated in HTML 4.0.
46
 
   */
47
 
  public String             getText();
48
 
  public void               setText(String text);
49
 
  /**
50
 
   * Color of links that have been visited by the user. See the vlink 
51
 
   * attribute definition in HTML 4.0. This attribute is deprecated in HTML 
52
 
   * 4.0.
53
 
   */
54
 
  public String             getVLink();
55
 
  public void               setVLink(String vLink);
56
 
}
57