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

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

/**

 This element is used for single-line text input. See the <a
 href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-ISINDEX">
 ISINDEX element definition </a> in HTML 4.0. This element is
 deprecated in HTML 4.0.
 		@short    This element is used for single-line text input.

*/
public class HTMLIsIndexElement extends HTMLElement  {
	protected HTMLIsIndexElement(Class dummy){super((Class) null);}
	public HTMLIsIndexElement() {
		super((Class) null);
		newHTMLIsIndexElement();
	}
	private native void newHTMLIsIndexElement();
	public HTMLIsIndexElement(HTMLIsIndexElement other) {
		super((Class) null);
		newHTMLIsIndexElement(other);
	}
	private native void newHTMLIsIndexElement(HTMLIsIndexElement other);
	public HTMLIsIndexElement(Node other) {
		super((Class) null);
		newHTMLIsIndexElement(other);
	}
	private native void newHTMLIsIndexElement(Node other);
	/**
		 ### KDE 4.0: remove
		     		@short    ### KDE 4.
	*/
	public native HTMLFormElement formElement();
	/**
		 The prompt message. See the <a
		 href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-prompt">
		 prompt attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    The prompt message.
	*/
	public native String prompt();
	/**
		 see prompt
		     		@short    see prompt
	*/
	public native void setPrompt(String arg1);
	// DOM::HTMLIsIndexElement* HTMLIsIndexElement(DOM::HTMLIsIndexElementImpl* arg1); >>>> NOT CONVERTED
}