summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLBodyElement.java
blob: 3ad71cd2f5f37bc56a3be8d925bbd7334889d845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 The HTML document body. This element is always present in the DOM
 API, even if the tags are not present in the source document. See
 the <a
 href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-BODY">
 BODY element definition </a> in HTML 4.0.
 		@short    The HTML document body.

*/
public class HTMLBodyElement extends HTMLElement  {
	protected HTMLBodyElement(Class dummy){super((Class) null);}
	public HTMLBodyElement() {
		super((Class) null);
		newHTMLBodyElement();
	}
	private native void newHTMLBodyElement();
	public HTMLBodyElement(HTMLBodyElement other) {
		super((Class) null);
		newHTMLBodyElement(other);
	}
	private native void newHTMLBodyElement(HTMLBodyElement other);
	public HTMLBodyElement(Node other) {
		super((Class) null);
		newHTMLBodyElement(other);
	}
	private native void newHTMLBodyElement(Node other);
	/**	
		 Color of active links (after mouse-button down, but before
		 mouse-button up). See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-alink">
		 alink attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Color of active links (after mouse-button down, but before  mouse-button up).
	*/
	public native String aLink();
	/**	
		 see aLink
		     		@short    see aLink
	*/
	public native void setALink(String arg1);
	/**	
		 URI of the background texture tile image. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-background">
		 background attribute definition </a> in HTML 4.0. This
		 attribute is deprecated in HTML 4.0.
			     		@short    URI of the background texture tile image.
	*/
	public native String background();
	/**	
		 see background
		     		@short    see background
	*/
	public native void setBackground(String arg1);
	/**	
		 Document background color. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor">
		 bgcolor attribute definition </a> in HTML 4.0. This attribute
		 is deprecated in HTML 4.0.
			     		@short    Document background color.
	*/
	public native String bgColor();
	/**	
		 see bgColor
		     		@short    see bgColor
	*/
	public native void setBgColor(String arg1);
	/**	
		 Color of links that are not active and unvisited. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-link">
		 link attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Color of links that are not active and unvisited.
	*/
	public native String link();
	/**	
		 see link
		     		@short    see link
	*/
	public native void setLink(String arg1);
	/**	
		 Document text color. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-text">
		 text attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Document text color.
	*/
	public native String text();
	/**	
		 see text
		     		@short    see text
	*/
	public native void setText(String arg1);
	/**	
		 Color of links that have been visited by the user. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-vlink">
		 vlink attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Color of links that have been visited by the user.
	*/
	public native String vLink();
	/**	
		 see vLink
		     		@short    see vLink
	*/
	public native void setVLink(String arg1);
	// DOM::HTMLBodyElement* HTMLBodyElement(DOM::HTMLBodyElementImpl* arg1); >>>> NOT CONVERTED
}