blob: bfdc73593eee42c8673756ffe7f6198a7f0dc304 (
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
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Local change to font. See the <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-FONT">
FONT element definition </a> in HTML 4.0. This element is
deprecated in HTML 4.0.
@short Local change to font.
*/
public class HTMLFontElement extends HTMLElement {
protected HTMLFontElement(Class dummy){super((Class) null);}
public HTMLFontElement() {
super((Class) null);
newHTMLFontElement();
}
private native void newHTMLFontElement();
public HTMLFontElement(HTMLFontElement other) {
super((Class) null);
newHTMLFontElement(other);
}
private native void newHTMLFontElement(HTMLFontElement other);
public HTMLFontElement(Node other) {
super((Class) null);
newHTMLFontElement(other);
}
private native void newHTMLFontElement(Node other);
/**
Font color. See the <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-color-FONT">
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/present/graphics.html#adef-face-FONT">
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);
/**
Font size. See the <a
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-FONT">
size attribute definition </a> in HTML 4.0. This attribute is
deprecated in HTML 4.0.
@short Font size.
*/
public native String size();
/**
see size
@short see size
*/
public native void setSize(String arg1);
// DOM::HTMLFontElement* HTMLFontElement(DOM::HTMLFontElementImpl* arg1); >>>> NOT CONVERTED
}
|