summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/Notation.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/Notation.java')
-rw-r--r--kdejava/koala/org/kde/koala/Notation.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/Notation.java b/kdejava/koala/org/kde/koala/Notation.java
new file mode 100644
index 00000000..919edf7e
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/Notation.java
@@ -0,0 +1,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
+}