blob: 11f4de5626f8f8c0a83cff13a9aedbc3b4a02def (
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Client-side image map area definition. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-AREA">
AREA element definition </a> in HTML 4.0.
@short Client-side image map area definition.
*/
public class HTMLAreaElement extends HTMLElement {
protected HTMLAreaElement(Class dummy){super((Class) null);}
public HTMLAreaElement() {
super((Class) null);
newHTMLAreaElement();
}
private native void newHTMLAreaElement();
public HTMLAreaElement(HTMLAreaElement other) {
super((Class) null);
newHTMLAreaElement(other);
}
private native void newHTMLAreaElement(HTMLAreaElement other);
public HTMLAreaElement(Node other) {
super((Class) null);
newHTMLAreaElement(other);
}
private native void newHTMLAreaElement(Node other);
/**
A single character access key to give access to the form
control. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey">
accesskey attribute definition </a> in HTML 4.0.
@short A single character access key to give access to the form control.
*/
public native String accessKey();
/**
see accessKey
@short see accessKey
*/
public native void setAccessKey(String arg1);
/**
Alternate text for user agents not rendering the normal content
of this element. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt">
alt attribute definition </a> in HTML 4.0.
@short Alternate text for user agents not rendering the normal content of this element.
*/
public native String alt();
/**
see alt
@short see alt
*/
public native void setAlt(String arg1);
/**
Comma-separated list of lengths, defining an active region
geometry. See also <code>shape</code> for the shape of the
region. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords">
coords attribute definition </a> in HTML 4.0.
@short Comma-separated list of lengths, defining an active region geometry.
*/
public native String coords();
/**
see coords
@short see coords
*/
public native void setCoords(String arg1);
/**
The URI of the linked resource. See the <a
href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href">
href attribute definition </a> in HTML 4.0.
@short The URI of the linked resource.
*/
public native String href();
/**
see href
@short see href
*/
public native void setHref(String arg1);
/**
Specifies that this area is inactive, i.e., has no associated
action. See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-nohref">
nohref attribute definition </a> in HTML 4.0.
@short Specifies that this area is inactive, i.
*/
public native boolean noHref();
/**
see noHref
@short see noHref
*/
public native void setNoHref(boolean arg1);
/**
The shape of the active area. The coordinates are given by
<code>coords</code> . See the <a
href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-shape">
shape attribute definition </a> in HTML 4.0.
@short The shape of the active area.
*/
public native String shape();
/**
see shape
@short see shape
*/
public native void setShape(String arg1);
/**
Index that represents the element's position in the tabbing
order. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex">
tabindex attribute definition </a> in HTML 4.0.
@short Index that represents the element's position in the tabbing order.
*/
public native long tabIndex();
/**
see tabIndex
@short see tabIndex
*/
public native void setTabIndex(long arg1);
/**
Frame to render the resource in. See the <a
href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target">
target attribute definition </a> in HTML 4.0.
@short Frame to render the resource in.
*/
public native String target();
/**
see target
@short see target
*/
public native void setTarget(String arg1);
// DOM::HTMLAreaElement* HTMLAreaElement(DOM::HTMLAreaElementImpl* arg1); >>>> NOT CONVERTED
}
|