~ubuntu-branches/ubuntu/karmic/libxerces2-java/karmic

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/Notation.java

  • Committer: Bazaar Package Importer
  • Author(s): Charles Majola
  • Date: 2005-12-09 11:58:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051209115821-ppifmmty1jv59hik
Tags: 2.6.2-3ubuntu3
Fix Build depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
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.
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
 
}