blob: 4d8d6d46880494f0a1c6c53f42b9343a3b16c5bb (
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
/**
Multi-line text field. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-TEXTAREA">
TEXTAREA element definition </a> in HTML 4.0.
@short Multi-line text field.
*/
public class HTMLTextAreaElement extends HTMLElement {
protected HTMLTextAreaElement(Class dummy){super((Class) null);}
public HTMLTextAreaElement() {
super((Class) null);
newHTMLTextAreaElement();
}
private native void newHTMLTextAreaElement();
public HTMLTextAreaElement(HTMLTextAreaElement other) {
super((Class) null);
newHTMLTextAreaElement(other);
}
private native void newHTMLTextAreaElement(HTMLTextAreaElement other);
public HTMLTextAreaElement(Node other) {
super((Class) null);
newHTMLTextAreaElement(other);
}
private native void newHTMLTextAreaElement(Node other);
/**
Stores the initial control value (i.e., the initial value of
<code>value</code> ).
@short Stores the initial control value (i.
*/
public native String defaultValue();
/**
see defaultValue
@short see defaultValue
*/
public native void setDefaultValue(String arg1);
/**
### KDE 4.0: remove.
@short ### KDE 4.
*/
public native HTMLFormElement formElement();
/**
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);
/**
Width of control (in characters). See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-cols-TEXTAREA">
cols attribute definition </a> in HTML 4.0.
@short Width of control (in characters).
*/
public native long cols();
/**
see cols
@short see cols
*/
public native void setCols(long arg1);
/**
The control is unavailable in this context. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled">
disabled attribute definition </a> in HTML 4.0.
@short The control is unavailable in this context.
*/
public native boolean disabled();
/**
see disabled
@short see disabled
*/
public native void setDisabled(boolean arg1);
/**
Form control or object name when submitted with a form. See the
<a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-TEXTAREA">
name attribute definition </a> in HTML 4.0.
@short Form control or object name when submitted with a form.
*/
public native String name();
/**
see name
@short see name
*/
public native void setName(String arg1);
/**
This control is read-only. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-readonly">
readonly attribute definition </a> in HTML 4.0.
@short This control is read-only.
*/
public native boolean readOnly();
/**
see readOnly
@short see readOnly
*/
public native void setReadOnly(boolean arg1);
/**
Number of text rows. See the <a
href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-rows-TEXTAREA">
rows attribute definition </a> in HTML 4.0.
@short Number of text rows.
*/
public native long rows();
/**
see rows
@short see rows
*/
public native void setRows(long 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);
/**
The type of this form control.
@short The type of this form control.
*/
public native String type();
/**
The current textual content of the multi-line text field. If
the entirety of the data can not fit into a single wstring, the
implementation may truncate the data.
@short The current textual content of the multi-line text field.
*/
public native String value();
/**
see value
@short see value
*/
public native void setValue(String arg1);
/**
Removes keyboard focus from this element.
@short Removes keyboard focus from this element.
*/
public native void blur();
/**
Gives keyboard focus to this element.
@short Gives keyboard focus to this element.
*/
public native void focus();
/**
Select the contents of the <code>TEXTAREA</code> .
@short Select the contents of the <code>TEXTAREA</code> .
*/
public native void select();
// DOM::HTMLTextAreaElement* HTMLTextAreaElement(DOM::HTMLTextAreaElementImpl* arg1); >>>> NOT CONVERTED
}
|