summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLFrameElement.java
blob: 6e90ecb212990cd154689cf072888d104b80cf3e (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

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

/**

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

*/
public class HTMLFrameElement extends HTMLElement  {
	protected HTMLFrameElement(Class dummy){super((Class) null);}
	public HTMLFrameElement() {
		super((Class) null);
		newHTMLFrameElement();
	}
	private native void newHTMLFrameElement();
	public HTMLFrameElement(HTMLFrameElement other) {
		super((Class) null);
		newHTMLFrameElement(other);
	}
	private native void newHTMLFrameElement(HTMLFrameElement other);
	public HTMLFrameElement(Node other) {
		super((Class) null);
		newHTMLFrameElement(other);
	}
	private native void newHTMLFrameElement(Node other);
	/**	
		 Request frame borders. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-frameborder">
		 frameborder attribute definition </a> in HTML 4.0.
			     		@short    Request frame borders.
	*/
	public native String frameBorder();
	/**	
		 see frameBorder
		     		@short    see frameBorder
	*/
	public native void setFrameBorder(String arg1);
	/**	
		 URI designating a long description of this image or frame. See
		 the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-longdesc-FRAME">
		 longdesc attribute definition </a> in HTML 4.0.
			     		@short    URI designating a long description of this image or frame.
	*/
	public native String longDesc();
	/**	
		 see longDesc
		     		@short    see longDesc
	*/
	public native void setLongDesc(String arg1);
	/**	
		 Frame margin height, in pixels. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginheight">
		 marginheight attribute definition </a> in HTML 4.0.
			     		@short    Frame margin height, in pixels.
	*/
	public native String marginHeight();
	/**	
		 see marginHeight
		     		@short    see marginHeight
	*/
	public native void setMarginHeight(String arg1);
	/**	
		 Frame margin width, in pixels. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginwidth">
		 marginwidth attribute definition </a> in HTML 4.0.
			     		@short    Frame margin width, in pixels.
	*/
	public native String marginWidth();
	/**	
		 see marginWidth
		     		@short    see marginWidth
	*/
	public native void setMarginWidth(String arg1);
	/**	
		 The frame name (object of the <code>target</code> attribute).
		 See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-name-FRAME">
		 name attribute definition </a> in HTML 4.0.
			     		@short    The frame name (object of the <code>target</code> attribute).
	*/
	public native String name();
	/**	
		 see name
		     		@short    see name
	*/
	public native void setName(String arg1);
	/**	
		 When true, forbid user from resizing frame. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-noresize">
		 noresize attribute definition </a> in HTML 4.0.
			     		@short    When true, forbid user from resizing frame.
	*/
	public native boolean noResize();
	/**	
		 see noResize
		     		@short    see noResize
	*/
	public native void setNoResize(boolean arg1);
	/**	
		 Specify whether or not the frame should have scrollbars. See
		 the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-scrolling">
		 scrolling attribute definition </a> in HTML 4.0.
			     		@short    Specify whether or not the frame should have scrollbars.
	*/
	public native String scrolling();
	/**	
		 see scrolling
		     		@short    see scrolling
	*/
	public native void setScrolling(String arg1);
	/**	
		 A URI designating the initial frame contents. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-src-FRAME">
		 src attribute definition </a> in HTML 4.0.
			     		@short    A URI designating the initial frame contents.
	*/
	public native String src();
	/**	
		 see src
		     		@short    see src
	*/
	public native void setSrc(String arg1);
	/**	
		 Introduced in DOM Level 2
			 Returns the document this frame contains, if there is any and
		 it is available, a Null document otherwise. The attribute is
		 read-only.
				@return The content Document if available.
     
		@short    Introduced in DOM Level 2
	*/
	public native Document contentDocument();
	// DOM::HTMLFrameElement* HTMLFrameElement(DOM::HTMLFrameElementImpl* arg1); >>>> NOT CONVERTED
}