]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/org/w3c/dom/ProcessingInstruction.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / org / w3c / dom / ProcessingInstruction.java
diff --git a/libjava/org/w3c/dom/ProcessingInstruction.java b/libjava/org/w3c/dom/ProcessingInstruction.java
deleted file mode 100644 (file)
index e3cfd1b..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
- * The <code>ProcessingInstruction</code> interface represents a "processing \r
- * instruction", used in XML as a way to keep processor-specific information \r
- * in the text of the document.\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 ProcessingInstruction extends Node {\r
-    /**\r
-     * The target of this processing instruction. XML defines this as being \r
-     * the first token following the markup that begins the processing \r
-     * instruction.\r
-     */\r
-    public String getTarget();\r
-\r
-    /**\r
-     * The content of this processing instruction. This is from the first non \r
-     * white space character after the target to the character immediately \r
-     * preceding the <code>?&gt;</code>.\r
-     * @exception DOMException\r
-     *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.\r
-     */\r
-    public String getData();\r
-    public void setData(String data)\r
-                          throws DOMException;\r
-\r
-}\r