org.kde.koala
Class Notation

java.lang.Object
  extended by org.kde.koala.Node
      extended by org.kde.koala.Notation
All Implemented Interfaces:
org.kde.qt.QtSupport

public class Notation
extends Node

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 nodeName attribute inherited from Node is set to the declared name of the notation. The DOM Level 1 does not support editing Notation nodes; they are therefore readonly. A Notation node does not have any parent.


Constructor Summary
  Notation()
           
protected Notation(java.lang.Class dummy)
           
  Notation(Node other)
           
  Notation(Notation other)
           
 
Method Summary
 java.lang.String publicId()
          The public identifier of this notation.
 java.lang.String systemId()
          The system identifier of this notation.
 
Methods inherited from class org.kde.koala.Node
addEventListener, appendChild, applyChanges, attributes, childNodes, cloneNode, dispatchEvent, elementId, firstChild, getRect, hasAttributes, hasChildNodes, index, insertBefore, isNull, isSupported, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, normalize, op_equals, op_not_equals, ownerDocument, parentNode, prefix, previousSibling, removeChild, removeEventListener, replaceChild, setNodeValue, setPrefix
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Notation

protected Notation(java.lang.Class dummy)

Notation

public Notation()

Notation

public Notation(Notation other)

Notation

public Notation(Node other)
Method Detail

publicId

public java.lang.String publicId()
The public identifier of this notation. If the public identifier was not specified, this is null .


systemId

public java.lang.String systemId()
The system identifier of this notation. If the system identifier was not specified, this is null .