You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/HTMLParagraphElement.java

47 lines
1.4 KiB

//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
}