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

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

/**

 Create a grid of frames. See the <a
 href="http://www.w3.org/TR/REC-html40/present/frames.html#edef-FRAMESET">
 FRAMESET element definition </a> in HTML 4.0.
 		@short    Create a grid of frames.

*/
public class HTMLFrameSetElement extends HTMLElement  {
	protected HTMLFrameSetElement(Class dummy){super((Class) null);}
	public HTMLFrameSetElement() {
		super((Class) null);
		newHTMLFrameSetElement();
	}
	private native void newHTMLFrameSetElement();
	public HTMLFrameSetElement(HTMLFrameSetElement other) {
		super((Class) null);
		newHTMLFrameSetElement(other);
	}
	private native void newHTMLFrameSetElement(HTMLFrameSetElement other);
	public HTMLFrameSetElement(Node other) {
		super((Class) null);
		newHTMLFrameSetElement(other);
	}
	private native void newHTMLFrameSetElement(Node other);
	/**	
		 The number of columns of frames in the frameset. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-cols-FRAMESET">
		 cols attribute definition </a> in HTML 4.0.
			     		@short    The number of columns of frames in the frameset.
	*/
	public native String cols();
	/**	
		 see cols
		     		@short    see cols
	*/
	public native void setCols(String arg1);
	/**	
		 The number of rows of frames in the frameset. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-rows-FRAMESET">
		 rows attribute definition </a> in HTML 4.0.
			     		@short    The number of rows of frames in the frameset.
	*/
	public native String rows();
	/**	
		 see rows
		     		@short    see rows
	*/
	public native void setRows(String arg1);
	// DOM::HTMLFrameSetElement* HTMLFrameSetElement(DOM::HTMLFrameSetElementImpl* arg1); >>>> NOT CONVERTED
}