< prev index next >

src/java.xml/share/classes/org/w3c/dom/ls/LSParserFilter.java

Print this page

        

@@ -54,14 +54,15 @@
  * The document element is never passed to the <code>LSParserFilter</code>
  * methods, i.e. it is not possible to filter out the document element.
  * <code>Document</code>, <code>DocumentType</code>, <code>Notation</code>,
  * <code>Entity</code>, and <code>Attr</code> nodes are never passed to the
  * <code>acceptNode</code> method on the filter. The child nodes of an
- * <code>EntityReference</code> node are passed to the filter if the
- * parameter "<a href='http://www.w3.org/TR/DOM-Level-3-Core/core.html#parameter-entities'>
- * entities</a>" is set to <code>false</code>. Note that, as described by the parameter "<a href='http://www.w3.org/TR/DOM-Level-3-Core/core.html#parameter-entities'>
- * entities</a>", unexpanded entity reference nodes are never discarded and are always
+ * <code>EntityReference</code> node are passed to the filter if the parameter
+ * "<a href='https://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#parameter-entities'>entities</a>"
+ * is set to <code>false</code>. Note that, as described by the parameter
+ * "<a href='https://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#parameter-entities'>entities</a>",
+ * unexpanded entity reference nodes are never discarded and are always
  * passed to the filter.
  * <p> All validity checking while parsing a document occurs on the source
  * document as it appears on the input stream, not on the DOM document as it
  * is built in memory. With filters, the document in memory may be a subset
  * of the document on the stream, and its validity may have been affected by

@@ -69,12 +70,12 @@
  * <p> All default attributes must be present on elements when the elements
  * are passed to the filter methods. All other default content must be
  * passed to the filter methods.
  * <p> DOM applications must not raise exceptions in a filter. The effect of
  * throwing exceptions from a filter is DOM implementation dependent.
- * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
-and Save Specification</a>.
+ * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>
+Document Object Model (DOM) Level 3 Load and Save Specification</a>.
  *
  * @since 1.5
  */
 public interface LSParserFilter {
     // Constants returned by startElement and acceptNode

@@ -193,11 +194,11 @@
      * definition of the constants. The constants <code>SHOW_ATTRIBUTE</code>
      * , <code>SHOW_DOCUMENT</code>, <code>SHOW_DOCUMENT_TYPE</code>,
      * <code>SHOW_NOTATION</code>, <code>SHOW_ENTITY</code>, and
      * <code>SHOW_DOCUMENT_FRAGMENT</code> are meaningless here. Those nodes
      * will never be passed to <code>LSParserFilter.acceptNode</code>.
-     * <br> The constants used here are defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and      Range</a>]
-     * .
+     * <br> The constants used here are defined in
+     * [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>].
      */
     public int getWhatToShow();
 
 }
< prev index next >