]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/org/w3c/dom/Entity.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / org / w3c / dom / Entity.java
diff --git a/libjava/org/w3c/dom/Entity.java b/libjava/org/w3c/dom/Entity.java
deleted file mode 100644 (file)
index 51a69cb..0000000
+++ /dev/null
@@ -1,68 +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 an entity, either parsed or unparsed, in an XML \r
- * document. Note that this models the entity itself not the entity \r
- * declaration. <code>Entity</code> declaration modeling has been left for a \r
- * later Level of the DOM specification.\r
- * <p>The <code>nodeName</code> attribute that is inherited from \r
- * <code>Node</code> contains the name of the entity.\r
- * <p>An XML processor may choose to completely expand entities before the \r
- * structure model is passed to the DOM; in this case there will be no \r
- * <code>EntityReference</code> nodes in the document tree.\r
- * <p>XML does not mandate that a non-validating XML processor read and \r
- * process entity declarations made in the external subset or declared in \r
- * external parameter entities. This means that parsed entities declared in \r
- * the external subset need not be expanded by some classes of applications, \r
- * and that the replacement value of the entity may not be available. When \r
- * the replacement value is available, the corresponding <code>Entity</code> \r
- * node's child list represents the structure of that replacement text. \r
- * Otherwise, the child list is empty.\r
- * <p>The DOM Level 2 does not support editing <code>Entity</code> nodes; if a \r
- * user wants to make changes to the contents of an <code>Entity</code>, \r
- * every related <code>EntityReference</code> node has to be replaced in the \r
- * structure model by a clone of the <code>Entity</code>'s contents, and \r
- * then the desired changes must be made to each of those clones instead. \r
- * <code>Entity</code> nodes and all their descendants are readonly.\r
- * <p>An <code>Entity</code> node does not have any parent.If the entity \r
- * contains an unbound namespace prefix, the <code>namespaceURI</code> of \r
- * the corresponding node in the <code>Entity</code> node subtree is \r
- * <code>null</code>. The same is true for <code>EntityReference</code> \r
- * nodes that refer to this entity, when they are created using the \r
- * <code>createEntityReference</code> method of the <code>Document</code> \r
- * interface. The DOM Level 2 does not support any mechanism to resolve \r
- * namespace prefixes.\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 Entity extends Node {\r
-    /**\r
-     * The public identifier associated with the entity, if specified. If the \r
-     * public identifier was not specified, this is <code>null</code>.\r
-     */\r
-    public String getPublicId();\r
-\r
-    /**\r
-     * The system identifier associated with the entity, if specified. If the \r
-     * system identifier was not specified, this is <code>null</code>.\r
-     */\r
-    public String getSystemId();\r
-\r
-    /**\r
-     * For unparsed entities, the name of the notation for the entity. For \r
-     * parsed entities, this is <code>null</code>. \r
-     */\r
-    public String getNotationName();\r
-\r
-}\r