summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLTitleElement.java
blob: 1b8b66cc41233b4cddfc99bb91e1dbee7a2b1179 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;

/**

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

*/
public class HTMLTitleElement extends HTMLElement  {
	protected HTMLTitleElement(Class dummy){super((Class) null);}
	public HTMLTitleElement() {
		super((Class) null);
		newHTMLTitleElement();
	}
	private native void newHTMLTitleElement();
	public HTMLTitleElement(HTMLTitleElement other) {
		super((Class) null);
		newHTMLTitleElement(other);
	}
	private native void newHTMLTitleElement(HTMLTitleElement other);
	public HTMLTitleElement(Node other) {
		super((Class) null);
		newHTMLTitleElement(other);
	}
	private native void newHTMLTitleElement(Node other);
	/**
		 The specified title as a string.
			     		@short    The specified title as a string.
	*/
	public native String text();
	/**
		 see text
		     		@short    see text
	*/
	public native void setText(String arg1);
	// DOM::HTMLTitleElement* HTMLTitleElement(DOM::HTMLTitleElementImpl* arg1); >>>> NOT CONVERTED
}