01: /*
02: * Copyright (c) 2000 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
10: * details.
11: */
12:
13: package org.w3c.dom.html;
14:
15: /**
16: * The HTML document body. This element is always present in the DOM API,
17: * even if the tags are not present in the source document. See the BODY
18: * element definition in HTML 4.0.
19: * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
20: */
21: public interface HTMLBodyElement extends HTMLElement {
22: /**
23: * Color of active links (after mouse-button down, but before
24: * mouse-button up). See the alink attribute definition in HTML 4.0.
25: * This attribute is deprecated in HTML 4.0.
26: */
27: public String getALink();
28:
29: public void setALink(String aLink);
30:
31: /**
32: * URI of the background texture tile image. See the background
33: * attribute definition in HTML 4.0. This attribute is deprecated in HTML
34: * 4.0.
35: */
36: public String getBackground();
37:
38: public void setBackground(String background);
39:
40: /**
41: * Document background color. See the bgcolor attribute definition in
42: * HTML 4.0. This attribute is deprecated in HTML 4.0.
43: */
44: public String getBgColor();
45:
46: public void setBgColor(String bgColor);
47:
48: /**
49: * Color of links that are not active and unvisited. See the link
50: * attribute definition in HTML 4.0. This attribute is deprecated in HTML
51: * 4.0.
52: */
53: public String getLink();
54:
55: public void setLink(String link);
56:
57: /**
58: * Document text color. See the text attribute definition in HTML 4.0.
59: * This attribute is deprecated in HTML 4.0.
60: */
61: public String getText();
62:
63: public void setText(String text);
64:
65: /**
66: * Color of links that have been visited by the user. See the vlink
67: * attribute definition in HTML 4.0. This attribute is deprecated in HTML
68: * 4.0.
69: */
70: public String getVLink();
71:
72: public void setVLink(String vLink);
73:
74: }
|