]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/org/w3c/dom/Notation.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / org / w3c / dom / Notation.java
diff --git a/libjava/org/w3c/dom/Notation.java b/libjava/org/w3c/dom/Notation.java
deleted file mode 100644 (file)
index 284e015..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*\r
- * Copyright (c) 2000 World Wide Web Consortium,\r
- * (Massachusetts Institute of Technology, Institut National de\r
- * Recherche en Informatique et en Automatique, Keio University). All\r
- * Rights Reserved. This program is distributed under the W3C's Software\r
- * Intellectual Property License. This program is distributed in the\r
- * hope that it will be useful, but WITHOUT ANY WARRANTY; without even\r
- * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\r
- * PURPOSE.\r
- * See W3C License http://www.w3.org/Consortium/Legal/ for more details.\r
- */\r
-\r
-package org.w3c.dom;\r
-\r
-/**\r
- * This interface represents a notation declared in the DTD. A notation either \r
- * declares, by name, the format of an unparsed entity (see section 4.7 of \r
- * the XML 1.0 specification ), or is used for formal declaration of \r
- * processing instruction targets (see section 2.6 of the XML 1.0 \r
- * specification ). The <code>nodeName</code> attribute inherited from \r
- * <code>Node</code> is set to the declared name of the notation.\r
- * <p>The DOM Level 1 does not support editing <code>Notation</code> nodes; \r
- * they are therefore readonly.\r
- * <p>A <code>Notation</code> node does not have any parent.\r
- * <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>.\r
- */\r
-public interface Notation extends Node {\r
-    /**\r
-     * The public identifier of this notation. If the public identifier was \r
-     * not specified, this is <code>null</code>.\r
-     */\r
-    public String getPublicId();\r
-\r
-    /**\r
-     * The system identifier of this notation. If the system identifier was \r
-     * not specified, this is <code>null</code>.\r
-     */\r
-    public String getSystemId();\r
-\r
-}\r