OSDN Git Service

Add some org packages.
[pf3gnuchains/gcc-fork.git] / libjava / org / w3c / dom / Comment.java
diff --git a/libjava/org/w3c/dom/Comment.java b/libjava/org/w3c/dom/Comment.java
new file mode 100644 (file)
index 0000000..7c37d96
--- /dev/null
@@ -0,0 +1,24 @@
+/*\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 inherits from <code>CharacterData</code> and represents the \r
+ * content of a comment, i.e., all the characters between the starting '\r
+ * <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. Note that this is \r
+ * the definition of a comment in XML, and, in practice, HTML, although some \r
+ * HTML tools may implement the full SGML comment structure.\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 Comment extends CharacterData {\r
+}\r