1adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project/*
2320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * Copyright (c) 2004 World Wide Web Consortium,
3320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson *
4320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * (Massachusetts Institute of Technology, European Research Consortium for
5320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * Informatics and Mathematics, Keio University). All Rights Reserved. This
6320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * work is distributed under the W3C(r) Software License [1] in the hope that
7320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
8320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson *
10320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project */
12adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project
13adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Projectpackage org.w3c.dom;
14adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project
15adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project/**
16f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes * This interface represents a notation declared in the DTD. A notation either
17f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes * declares, by name, the format of an unparsed entity (see <a href='http://www.w3.org/TR/2004/REC-xml-20040204#Notations'>section 4.7</a> of the XML 1.0 specification [<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>]), or is
18f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes * used for formal declaration of processing instruction targets (see <a href='http://www.w3.org/TR/2004/REC-xml-20040204#sec-pi'>section 2.6</a> of the XML 1.0 specification [<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>]). The
19f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes * <code>nodeName</code> attribute inherited from <code>Node</code> is set
20320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * to the declared name of the notation.
21f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes * <p>The DOM Core does not support editing <code>Notation</code> nodes; they
22320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * are therefore readonly.
23adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project * <p>A <code>Notation</code> node does not have any parent.
24320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
25adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project */
26adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Projectpublic interface Notation extends Node {
27adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project    /**
28f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes     * The public identifier of this notation. If the public identifier was
29adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project     * not specified, this is <code>null</code>.
30adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project     */
31adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project    public String getPublicId();
32adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project
33adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project    /**
34f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes     * The system identifier of this notation. If the system identifier was
35f33eae7e84eb6d3b0f4e86b59605bb3de73009f3Elliott Hughes     * not specified, this is <code>null</code>. This may be an absolute URI
36320c9890e8241fb0ad05de6fa5e6c3eb3aece159Jesse Wilson     * or not.
37adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project     */
38adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project    public String getSystemId();
39adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project
40adc854b798c1cfe3bfd4c27d68d5cee38ca617daThe Android Open Source Project}
41