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

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

/**

 Form field label text. See the <a
 href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LABEL">
 LABEL element definition </a> in HTML 4.0.
 		@short    Form field label text.

*/
public class HTMLLabelElement extends HTMLElement  {
	protected HTMLLabelElement(Class dummy){super((Class) null);}
	public HTMLLabelElement() {
		super((Class) null);
		newHTMLLabelElement();
	}
	private native void newHTMLLabelElement();
	public HTMLLabelElement(HTMLLabelElement other) {
		super((Class) null);
		newHTMLLabelElement(other);
	}
	private native void newHTMLLabelElement(HTMLLabelElement other);
	public HTMLLabelElement(Node other) {
		super((Class) null);
		newHTMLLabelElement(other);
	}
	private native void newHTMLLabelElement(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);
	/**	
		 This attribute links this label with another form control by
		 <code>id</code> attribute. See the <a
		 href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-for">
		 for attribute definition </a> in HTML 4.0.
			     		@short    This attribute links this label with another form control by  <code>id</code> attribute.
	*/
	public native String htmlFor();
	/**	
		 see htmlFor
		     		@short    see htmlFor
	*/
	public native void setHtmlFor(String arg1);
	// DOM::HTMLLabelElement* HTMLLabelElement(DOM::HTMLLabelElementImpl* arg1); >>>> NOT CONVERTED
}