You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
Java
47 lines
1.3 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.koala;
|
|
|
|
import org.kde.qt.Qt;
|
|
import org.kde.qt.QtSupport;
|
|
|
|
/**
|
|
|
|
Force a line break. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-BR"> BR
|
|
element definition </a> in HTML 4.0.
|
|
@short Force a line break.
|
|
|
|
*/
|
|
public class HTMLBRElement extends HTMLElement {
|
|
protected HTMLBRElement(Class dummy){super((Class) null);}
|
|
public HTMLBRElement() {
|
|
super((Class) null);
|
|
newHTMLBRElement();
|
|
}
|
|
private native void newHTMLBRElement();
|
|
public HTMLBRElement(HTMLBRElement other) {
|
|
super((Class) null);
|
|
newHTMLBRElement(other);
|
|
}
|
|
private native void newHTMLBRElement(HTMLBRElement other);
|
|
public HTMLBRElement(Node other) {
|
|
super((Class) null);
|
|
newHTMLBRElement(other);
|
|
}
|
|
private native void newHTMLBRElement(Node other);
|
|
/**
|
|
Control flow of text around floats. See the <a
|
|
href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-clear">
|
|
clear attribute definition </a> in HTML 4.0. This attribute is
|
|
deprecated in HTML 4.0.
|
|
@short Control flow of text around floats.
|
|
*/
|
|
public native String clear();
|
|
/**
|
|
see clear
|
|
@short see clear
|
|
*/
|
|
public native void setClear(String arg1);
|
|
// DOM::HTMLBRElement* HTMLBRElement(DOM::HTMLBRElementImpl* arg1); >>>> NOT CONVERTED
|
|
}
|