summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/Notation.java
blob: 919edf7ef7f25e638b7ac40b6df88eef58a0cd61 (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;

/**

 This interface represents a notation declared in the DTD. A
 notation either declares, by name, the format of an unparsed entity
 (see section 4.7 of the XML 1.0 specification), or is used for
 formal declaration of Processing Instruction targets (see section
 2.6 of the XML 1.0 specification). The <code>nodeName</code>
 attribute inherited from <code>Node</code> is set to the declared
 name of the notation.
  The DOM Level 1 does not support editing <code>Notation</code>
 nodes; they are therefore readonly.
  A <code>Notation</code> node does not have any parent.
 		@short    This interface represents a notation declared in the DTD.

*/
public class Notation extends Node  {
	protected Notation(Class dummy){super((Class) null);}
	public Notation() {
		super((Class) null);
		newNotation();
	}
	private native void newNotation();
	public Notation(Notation other) {
		super((Class) null);
		newNotation(other);
	}
	private native void newNotation(Notation other);
	public Notation(Node other) {
		super((Class) null);
		newNotation(other);
	}
	private native void newNotation(Node other);
	/**	
		 The public identifier of this notation. If the public
		 identifier was not specified, this is <code>null</code> .
			     		@short    The public identifier of this notation.
	*/
	public native String publicId();
	/**	
		 The system identifier of this notation. If the system
		 identifier was not specified, this is <code>null</code> .
			     		@short    The system identifier of this notation.
	*/
	public native String systemId();
	// DOM::Notation* Notation(DOM::NotationImpl* arg1); >>>> NOT CONVERTED
}