summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/CDATASection.java
blob: dd2e240f1a5de5b7cde282ab3bdfbc20fc78b5e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//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
}