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/HTMLPreElement.java

47 lines
1.3 KiB

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