summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/EntityReference.java
blob: 8704755f565ab4930326fe7458c0c05de868084a (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
47
48
49
50
51
52
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**

 <code>EntityReference</code> objects may be inserted into the
 structure model when an entity reference is in the source document,
 or when the user wishes to insert an entity reference. Note that
 character references and references to predefined entities are
 considered to be expanded by the HTML or XML processor so that
 characters are represented by their Unicode equivalent rather than
 by an entity reference. Moreover, the XML processor may completely
 expand references to entities while building the structure model,
 instead of providing <code>EntityReference</code> objects. If it
 does provide such objects, then for a given <code>EntityReference</code>
 node, it may be that there is no <code>Entity</code> node
 representing the referenced entity; but if such an <code>Entity</code>
 exists, then the child list of the <code>EntityReference</code>
 node is the same as that of the <code>Entity</code> node.
 As with the <code>Entity</code> node, all descendants of the
 <code>EntityReference</code> are readonly.
  The resolution of the children of the <code>EntityReference</code>
 (the replacement value of the referenced <code>Entity</code>
 ) may be lazily evaluated; actions by the user (such as
 calling the <code>childNodes</code> method on the
 <code>EntityReference</code> node) are assumed to trigger the
 evaluation.
 		@short    <code>EntityReference</code> objects may be inserted into the  structure model when an entity reference is in the source document,  or when the user wishes to insert an entity reference.

*/
public class EntityReference extends Node  {
	protected EntityReference(Class dummy){super((Class) null);}
	public EntityReference() {
		super((Class) null);
		newEntityReference();
	}
	private native void newEntityReference();
	public EntityReference(EntityReference other) {
		super((Class) null);
		newEntityReference(other);
	}
	private native void newEntityReference(EntityReference other);
	public EntityReference(Node other) {
		super((Class) null);
		newEntityReference(other);
	}
	private native void newEntityReference(Node other);
	// DOM::EntityReference* EntityReference(DOM::EntityReferenceImpl* arg1); >>>> NOT CONVERTED
}