summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLParagraphElement.java
blob: 5f5358c2fa740ab401aa459596e720834038168d (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;

/**

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

*/
public class HTMLParagraphElement extends HTMLElement  {
	protected HTMLParagraphElement(Class dummy){super((Class) null);}
	public HTMLParagraphElement() {
		super((Class) null);
		newHTMLParagraphElement();
	}
	private native void newHTMLParagraphElement();
	public HTMLParagraphElement(HTMLParagraphElement other) {
		super((Class) null);
		newHTMLParagraphElement(other);
	}
	private native void newHTMLParagraphElement(HTMLParagraphElement other);
	public HTMLParagraphElement(Node other) {
		super((Class) null);
		newHTMLParagraphElement(other);
	}
	private native void newHTMLParagraphElement(Node other);
	/**	
		 Horizontal text alignment. See the <a
		 href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-align">
		 align attribute definition </a> in HTML 4.0. This attribute is
		 deprecated in HTML 4.0.
			     		@short    Horizontal text alignment.
	*/
	public native String align();
	/**	
		 see align
		     		@short    see align
	*/
	public native void setAlign(String arg1);
	// DOM::HTMLParagraphElement* HTMLParagraphElement(DOM::HTMLElementImpl* arg1); >>>> NOT CONVERTED
}