summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/CDATASection.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/CDATASection.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/CDATASection.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/CDATASection.java b/tdejava/koala/org/trinitydesktop/koala/CDATASection.java
new file mode 100644
index 00000000..560600f8
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/CDATASection.java
@@ -0,0 +1,46 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.QtSupport;
+
+/**
+
+ CDATA sections are used to escape blocks of text containing
+ characters that would otherwise be regarded as markup. The only
+ delimiter that is recognized in a CDATA section is the "]]>"
+ string that ends the CDATA section. CDATA sections can not be
+ nested. The primary purpose is for including material such as XML
+ fragments, without needing to escape all the delimiters.
+ The <code>DOMString</code> attribute of the <code>Text</code>
+ node holds the text that is contained by the CDATA section. Note
+ that this may contain characters that need to be escaped outside of
+ CDATA sections and that, depending on the character encoding
+ ("charset") chosen for serialization, it may be impossible to write
+ out some characters as part of a CDATA section.
+ The <code>CDATASection</code> interface inherits the
+ <code>CharacterData</code> interface through the <code>Text</code>
+ interface. Adjacent <code>CDATASections</code> nodes are not
+ merged by use of the Element.normalize() method.
+ @short CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup.
+
+*/
+public class CDATASection extends Text {
+ protected CDATASection(Class dummy){super((Class) null);}
+ public CDATASection() {
+ super((Class) null);
+ newCDATASection();
+ }
+ private native void newCDATASection();
+ public CDATASection(CDATASection other) {
+ super((Class) null);
+ newCDATASection(other);
+ }
+ private native void newCDATASection(CDATASection other);
+ public CDATASection(Node other) {
+ super((Class) null);
+ newCDATASection(other);
+ }
+ private native void newCDATASection(Node other);
+ // DOM::CDATASection* CDATASection(DOM::CDATASectionImpl* arg1); >>>> NOT CONVERTED
+}