summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java
diff options
context:
space:
mode:
authorDarrell Anderson <[email protected]>2014-01-08 20:06:00 +0100
committerSlávek Banko <[email protected]>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java b/tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java
new file mode 100644
index 00000000..d0723ef9
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/HTMLFrameSetElement.java
@@ -0,0 +1,57 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ Create a grid of frames. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/frames.html#edef-FRAMESET">
+ FRAMESET element definition </a> in HTML 4.0.
+ @short Create a grid of frames.
+
+*/
+public class HTMLFrameSetElement extends HTMLElement {
+ protected HTMLFrameSetElement(Class dummy){super((Class) null);}
+ public HTMLFrameSetElement() {
+ super((Class) null);
+ newHTMLFrameSetElement();
+ }
+ private native void newHTMLFrameSetElement();
+ public HTMLFrameSetElement(HTMLFrameSetElement other) {
+ super((Class) null);
+ newHTMLFrameSetElement(other);
+ }
+ private native void newHTMLFrameSetElement(HTMLFrameSetElement other);
+ public HTMLFrameSetElement(Node other) {
+ super((Class) null);
+ newHTMLFrameSetElement(other);
+ }
+ private native void newHTMLFrameSetElement(Node other);
+ /**
+ The number of columns of frames in the frameset. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-cols-FRAMESET">
+ cols attribute definition </a> in HTML 4.0.
+ @short The number of columns of frames in the frameset.
+ */
+ public native String cols();
+ /**
+ see cols
+ @short see cols
+ */
+ public native void setCols(String arg1);
+ /**
+ The number of rows of frames in the frameset. See the <a
+ href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-rows-FRAMESET">
+ rows attribute definition </a> in HTML 4.0.
+ @short The number of rows of frames in the frameset.
+ */
+ public native String rows();
+ /**
+ see rows
+ @short see rows
+ */
+ public native void setRows(String arg1);
+ // DOM::HTMLFrameSetElement* HTMLFrameSetElement(DOM::HTMLFrameSetElementImpl* arg1); >>>> NOT CONVERTED
+}