summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLBaseFontElement.java
blob: 1c6032e37a19cc2e19f19bf656481d4cf2050068 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 Base font. See the <a
 href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-BASEFONT">
 BASEFONT element definition </a> in HTML 4.0. This element is
 deprecated in HTML 4.0.
 		@short    Base font.

*/
public class HTMLBaseFontElement extends HTMLElement  {
	protected HTMLBaseFontElement(Class dummy){super((Class) null);}
	public HTMLBaseFontElement() {
		super((Class) null);
		newHTMLBaseFontElement();
	}
	private native void newHTMLBaseFontElement();
	public HTMLBaseFontElement(HTMLBaseFontElement other) {
		super((Class) null);
		newHTMLBaseFontElement(other);
	}
	private native void newHTMLBaseFontElement(HTMLBaseFontElement other);
	public HTMLBaseFontElement(Node other) {
		super((Class) null);
		newHTMLBaseFontElement(other);
	}
	private native void newHTMLBaseFontElement(Node other);
	/**	
		 Font color. See the <a href="http://www.w3.org/TR/REC-html40/">
		 color attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Font color.
	*/
	public native String color();
	/**	
		 see color
		     		@short    see color
	*/
	public native void setColor(String arg1);
	/**	
		 Font face identifier. See the <a
		 href="http://www.w3.org/TR/REC-html40/"> face attribute
		 definition </a> in HTML 4.0. This attribute is deprecated in
		 HTML 4.0.
			     		@short    Font face identifier.
	*/
	public native String face();
	/**	
		 see face
		     		@short    see face
	*/
	public native void setFace(String arg1);
	/**	
		 Computed Font size. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-BASEFONT">
		 size attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Computed Font size.
	*/
	public native long getSize();
	/**	
		 see size
		      		@short    see size
	*/
	public native void setSize(long arg1);
	// DOM::HTMLBaseFontElement* HTMLBaseFontElement(DOM::HTMLBaseFontElementImpl* arg1); >>>> NOT CONVERTED
}