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

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

/**

 Preformatted text. See the <a
 href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-PRE">
 PRE element definition </a> in HTML 4.0.
 		@short    Preformatted text.

*/
public class HTMLPreElement extends HTMLElement  {
	protected HTMLPreElement(Class dummy){super((Class) null);}
	public HTMLPreElement() {
		super((Class) null);
		newHTMLPreElement();
	}
	private native void newHTMLPreElement();
	public HTMLPreElement(HTMLPreElement other) {
		super((Class) null);
		newHTMLPreElement(other);
	}
	private native void newHTMLPreElement(HTMLPreElement other);
	public HTMLPreElement(Node other) {
		super((Class) null);
		newHTMLPreElement(other);
	}
	private native void newHTMLPreElement(Node other);
	/**	
		 Fixed width for content. See the <a
		 href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-width-PRE">
		 width attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Fixed width for content.
	*/
	public native long width();
	/**	
		 see width
		     		@short    see width
	*/
	public native void setWidth(long arg1);
	// DOM::HTMLPreElement* HTMLPreElement(DOM::HTMLPreElementImpl* arg1); >>>> NOT CONVERTED
}