This commit was manufactured by cvs2svn to create branch 'gomp-branch'.
[official-gcc.git] / libjava / org / w3c / dom / Notation.java
blob284e01551a1dae5c20eb07aa40595cdfbb5a1b8d
1 /*
2 * Copyright (c) 2000 World Wide Web Consortium,
3 * (Massachusetts Institute of Technology, Institut National de
4 * Recherche en Informatique et en Automatique, Keio University). All
5 * Rights Reserved. This program is distributed under the W3C's Software
6 * Intellectual Property License. This program is distributed in the
7 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9 * PURPOSE.
10 * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
13 package org.w3c.dom;
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>.
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>.
32 public String getPublicId();
34 /**
35 * The system identifier of this notation. If the system identifier was
36 * not specified, this is <code>null</code>.
38 public String getSystemId();