summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/HTMLModElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/HTMLModElement.java')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLModElement.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLModElement.java b/kdejava/koala/org/kde/koala/HTMLModElement.java
new file mode 100644
index 00000000..47a570cf
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/HTMLModElement.java
@@ -0,0 +1,59 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ Notice of modification to part of a document. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-ins">
+ INS </a> and <a
+ href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-del">
+ DEL </a> element definitions in HTML 4.0.
+ @short Notice of modification to part of a document.
+
+*/
+public class HTMLModElement extends HTMLElement {
+ protected HTMLModElement(Class dummy){super((Class) null);}
+ public HTMLModElement() {
+ super((Class) null);
+ newHTMLModElement();
+ }
+ private native void newHTMLModElement();
+ public HTMLModElement(HTMLModElement other) {
+ super((Class) null);
+ newHTMLModElement(other);
+ }
+ private native void newHTMLModElement(HTMLModElement other);
+ public HTMLModElement(Node other) {
+ super((Class) null);
+ newHTMLModElement(other);
+ }
+ private native void newHTMLModElement(Node other);
+ /**
+ A URI designating a document that describes the reason for the
+ change. See the <a href="http://www.w3.org/TR/REC-html40/">
+ cite attribute definition </a> in HTML 4.0.
+ @short A URI designating a document that describes the reason for the change.
+ */
+ public native String cite();
+ /**
+ see cite
+ @short see cite
+ */
+ public native void setCite(String arg1);
+ /**
+ The date and time of the change. See the <a
+ href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-datetime">
+ datetime attribute definition </a> in HTML 4.0.
+ @short The date and time of the change.
+ */
+ public native String dateTime();
+ /**
+ see dateTime
+ @short see dateTime
+ */
+ public native void setDateTime(String arg1);
+ // DOM::HTMLModElement* HTMLModElement(DOM::HTMLElementImpl* arg1); >>>> NOT CONVERTED
+}