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/Notation.java

53 lines
1.7 KiB

//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
}