summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLTableColElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLTableColElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLTableColElement.java107
1 files changed, 107 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLTableColElement.java b/kdejava/koala/org/kde/koala/HTMLTableColElement.java
new file mode 100644
index 00000000..d8875248
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLTableColElement.java
@@ -0,0 +1,107 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Regroups the <code>COL</code> and <code>COLGROUP</code>
+ elements. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-COL">
+ COL element definition </a> in HTML 4.0.
+ @short Regroups the <code>COL</code> and <code>COLGROUP</code> elements.
+
+*/
+public class HTMLTableColElement extends HTMLElement {
+ protected HTMLTableColElement(Class dummy){super((Class) null);}
+ public HTMLTableColElement() {
+ super((Class) null);
+ newHTMLTableColElement();
+ }
+ private native void newHTMLTableColElement();
+ public HTMLTableColElement(HTMLTableColElement other) {
+ super((Class) null);
+ newHTMLTableColElement(other);
+ }
+ private native void newHTMLTableColElement(HTMLTableColElement other);
+ public HTMLTableColElement(Node other) {
+ super((Class) null);
+ newHTMLTableColElement(other);
+ }
+ private native void newHTMLTableColElement(Node other);
+ /**
+ Horizontal alignment of cell data in column. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-TD">
+ align attribute definition </a> in HTML 4.0.
+ @short Horizontal alignment of cell data in column.
+ */
+ public native String align();
+ /**
+ see align
+ @short see align
+ */
+ public native void setAlign(String arg1);
+ /**
+ Alignment character for cells in a column. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-char">
+ char attribute definition </a> in HTML 4.0.
+ @short Alignment character for cells in a column.
+ */
+ public native String ch();
+ /**
+ see ch
+ @short see ch
+ */
+ public native void setCh(String arg1);
+ /**
+ Offset of alignment character. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-charoff">
+ charoff attribute definition </a> in HTML 4.0.
+ @short Offset of alignment character.
+ */
+ public native String chOff();
+ /**
+ see chOff
+ @short see chOff
+ */
+ public native void setChOff(String arg1);
+ /**
+ Indicates the number of columns in a group or affected by a
+ grouping. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-span-COL">
+ span attribute definition </a> in HTML 4.0.
+ @short Indicates the number of columns in a group or affected by a grouping.
+ */
+ public native long span();
+ /**
+ see span
+ @short see span
+ */
+ public native void setSpan(long arg1);
+ /**
+ Vertical alignment of cell data in column. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-valign">
+ valign attribute definition </a> in HTML 4.0.
+ @short Vertical alignment of cell data in column.
+ */
+ public native String vAlign();
+ /**
+ see vAlign
+ @short see vAlign
+ */
+ public native void setVAlign(String arg1);
+ /**
+ Default column width. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-COL">
+ width attribute definition </a> in HTML 4.0.
+ @short Default column width.
+ */
+ public native String width();
+ /**
+ see width
+ @short see width
+ */
+ public native void setWidth(String arg1);
+ // DOM::HTMLTableColElement* HTMLTableColElement(DOM::HTMLTableColElementImpl* arg1); >>>> NOT CONVERTED
+}