summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLParamElement.java
blob: f72bed3950eb24197f8024f1956f3c4c9de7215a (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

 Parameters fed to the <code>OBJECT</code> element. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-PARAM">
 PARAM element definition </a> in HTML 4.0.
 		@short    Parameters fed to the <code>OBJECT</code> element.

*/
public class HTMLParamElement extends HTMLElement  {
	protected HTMLParamElement(Class dummy){super((Class) null);}
	public HTMLParamElement() {
		super((Class) null);
		newHTMLParamElement();
	}
	private native void newHTMLParamElement();
	public HTMLParamElement(HTMLParamElement other) {
		super((Class) null);
		newHTMLParamElement(other);
	}
	private native void newHTMLParamElement(HTMLParamElement other);
	public HTMLParamElement(Node other) {
		super((Class) null);
		newHTMLParamElement(other);
	}
	private native void newHTMLParamElement(Node other);
	/**	
		 The name of a run-time parameter. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-PARAM">
		 name attribute definition </a> in HTML 4.0.
			     		@short    The name of a run-time parameter.
	*/
	public native String name();
	/**	
		 see name
		     		@short    see name
	*/
	public native void setName(String arg1);
	/**	
		 Content type for the <code>value</code> attribute when
		 <code>valuetype</code> has the value "ref". See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-type-PARAM">
		 type attribute definition </a> in HTML 4.0.
			     		@short    Content type for the <code>value</code> attribute when  <code>valuetype</code> has the value "ref".
	*/
	public native String type();
	/**	
		 see type
		     		@short    see type
	*/
	public native void setType(String arg1);
	/**	
		 The value of a run-time parameter. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-value-PARAM">
		 value attribute definition </a> in HTML 4.0.
			     		@short    The value of a run-time parameter.
	*/
	public native String value();
	/**	
		 see value
		     		@short    see value
	*/
	public native void setValue(String arg1);
	/**	
		 Information about the meaning of the <code>value</code>
		 attribute value. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-valuetype">
		 valuetype attribute definition </a> in HTML 4.0.
			     		@short    Information about the meaning of the <code>value</code>  attribute value.
	*/
	public native String valueType();
	/**	
		 see valueType
		     		@short    see valueType
	*/
	public native void setValueType(String arg1);
	// DOM::HTMLParamElement* HTMLParamElement(DOM::HTMLParamElementImpl* arg1); >>>> NOT CONVERTED
}