01: /*
02: * Copyright (c) 2000 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE.
10: * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
11: */
12:
13: package org.w3c.dom;
14:
15: /**
16: * This interface represents a notation declared in the DTD. A notation either
17: * declares, by name, the format of an unparsed entity (see section 4.7 of
18: * the XML 1.0 specification ), or is used for formal declaration of
19: * processing instruction targets (see section 2.6 of the XML 1.0
20: * specification ). The <code>nodeName</code> attribute inherited from
21: * <code>Node</code> is set to the declared name of the notation.
22: * <p>The DOM Level 1 does not support editing <code>Notation</code> nodes;
23: * they are therefore readonly.
24: * <p>A <code>Notation</code> node does not have any parent.
25: * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>.
26: */
27: public interface Notation extends Node {
28: /**
29: * The public identifier of this notation. If the public identifier was
30: * not specified, this is <code>null</code>.
31: */
32: public String getPublicId();
33:
34: /**
35: * The system identifier of this notation. If the system identifier was
36: * not specified, this is <code>null</code>.
37: */
38: public String getSystemId();
39:
40: }
|