summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/Comment.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/Comment.java')
-rw-r--r--kdejava/koala/org/kde/koala/Comment.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/Comment.java b/kdejava/koala/org/kde/koala/Comment.java
new file mode 100644
index 00000000..6c370415
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/Comment.java
@@ -0,0 +1,35 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ This represents the content of a comment, i.e., all the characters
+ between the starting ' <code>&lt;</code>!-- ' and ending '
+ <code>--&gt;</code> '. Note that this is the definition of a comment in
+ XML, and, in practice, HTML, although some HTML tools may implement
+ the full SGML comment structure.
+ @short This represents the content of a comment, i.
+
+*/
+public class Comment extends CharacterData {
+ protected Comment(Class dummy){super((Class) null);}
+ public Comment() {
+ super((Class) null);
+ newComment();
+ }
+ private native void newComment();
+ public Comment(Comment other) {
+ super((Class) null);
+ newComment(other);
+ }
+ private native void newComment(Comment other);
+ public Comment(Node other) {
+ super((Class) null);
+ newComment(other);
+ }
+ private native void newComment(Node other);
+ // DOM::Comment* Comment(DOM::CommentImpl* arg1); >>>> NOT CONVERTED
+}