You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/CDATASection.java

47 lines
1.8 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.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
}