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/HTMLHeadingElement.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;
/**
For the <code>H1</code> to <code>H6</code> elements. See the <a
href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-H1">
H1 element definition </a> in HTML 4.0.
@short For the <code>H1</code> to <code>H6</code> elements.
*/
public class HTMLHeadingElement extends HTMLElement {
protected HTMLHeadingElement(Class dummy){super((Class) null);}
public HTMLHeadingElement() {
super((Class) null);
newHTMLHeadingElement();
}
private native void newHTMLHeadingElement();
public HTMLHeadingElement(HTMLHeadingElement other) {
super((Class) null);
newHTMLHeadingElement(other);
}
private native void newHTMLHeadingElement(HTMLHeadingElement other);
public HTMLHeadingElement(Node other) {
super((Class) null);
newHTMLHeadingElement(other);
}
private native void newHTMLHeadingElement(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::HTMLHeadingElement* HTMLHeadingElement(DOM::HTMLElementImpl* arg1); >>>> NOT CONVERTED
}