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

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

/**

 Provides a caption for a <code>FIELDSET</code> grouping. See the
 <a
 href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LEGEND">
 LEGEND element definition </a> in HTML 4.0.
 		@short    Provides a caption for a <code>FIELDSET</code> grouping.

*/
public class HTMLLegendElement extends HTMLElement  {
	protected HTMLLegendElement(Class dummy){super((Class) null);}
	public HTMLLegendElement() {
		super((Class) null);
		newHTMLLegendElement();
	}
	private native void newHTMLLegendElement();
	public HTMLLegendElement(HTMLLegendElement other) {
		super((Class) null);
		newHTMLLegendElement(other);
	}
	private native void newHTMLLegendElement(HTMLLegendElement other);
	public HTMLLegendElement(Node other) {
		super((Class) null);
		newHTMLLegendElement(other);
	}
	private native void newHTMLLegendElement(Node other);
	/**	
		 ### 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);
	/**	
		 Text alignment relative to <code>FIELDSET</code> . See the <a
		 href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-align-LEGEND">
		 align attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Text alignment relative to <code>FIELDSET</code> .
	*/
	public native String align();
	/**	
		 see align
		     		@short    see align
	*/
	public native void setAlign(String arg1);
	// DOM::HTMLLegendElement* HTMLLegendElement(DOM::HTMLLegendElementImpl* arg1); >>>> NOT CONVERTED
}