summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLBRElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLBRElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLBRElement.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLBRElement.java b/kdejava/koala/org/kde/koala/HTMLBRElement.java
new file mode 100644
index 00000000..e001a748
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLBRElement.java
@@ -0,0 +1,46 @@
+//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
+}