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

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

/**

 Root of an HTML document. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-HTML">
 HTML element definition </a> in HTML 4.0.
 		@short    Root of an HTML document.

*/
public class HTMLHtmlElement extends HTMLElement  {
	protected HTMLHtmlElement(Class dummy){super((Class) null);}
	public HTMLHtmlElement() {
		super((Class) null);
		newHTMLHtmlElement();
	}
	private native void newHTMLHtmlElement();
	public HTMLHtmlElement(HTMLHtmlElement other) {
		super((Class) null);
		newHTMLHtmlElement(other);
	}
	private native void newHTMLHtmlElement(HTMLHtmlElement other);
	public HTMLHtmlElement(Node other) {
		super((Class) null);
		newHTMLHtmlElement(other);
	}
	private native void newHTMLHtmlElement(Node other);
	/**	
		 Version information about the document's DTD. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-version">
		 version attribute definition </a> in HTML 4.0. This attribute
		 is deprecated in HTML 4.0.
			     		@short    Version information about the document's DTD.
	*/
	public native String version();
	/**	
		 see version
		     		@short    see version
	*/
	public native void setVersion(String arg1);
	// DOM::HTMLHtmlElement* HTMLHtmlElement(DOM::HTMLHtmlElementImpl* arg1); >>>> NOT CONVERTED
}