diff --git a/core/src/java/org/jdom2/input/stax/StAXFilter.java b/core/src/java/org/jdom2/input/stax/StAXFilter.java index 43c671a17..154d5b7c8 100644 --- a/core/src/java/org/jdom2/input/stax/StAXFilter.java +++ b/core/src/java/org/jdom2/input/stax/StAXFilter.java @@ -90,7 +90,8 @@ public interface StAXFilter { * If the return value of this call is true, then this Element will be * processed as a JDOM fragment. You may then get calls to the prune* * methods to determine whether child content of this Element should be - * pruned + * pruned. + * * @param depth The depth of this content from the document root * (the root Element is at depth 0) * @param name The XML tag name of this Element @@ -102,9 +103,8 @@ public interface StAXFilter { /** * The current event is a Comment event. *

- * A non-null return value will become the Comment text. Return null to skip - * the comment, the specified comment text to leave the comment unchanged, - * or any other String to create a different comment value. + * A null return value will cause the Comment to be ignored, and a non-null + * return value will become the Comment's text. *

* To include the comment as-is, do: *
@@ -134,9 +134,8 @@ public interface StAXFilter { /** * The current event is a CDATA event. *

- * A non-null return value will become the CDATA text. Return null to skip - * the CDATA, the specified text to leave the CDATA unchanged, - * or any other String to create a different CDATA value. + * A null return value will cause the Comment to be ignored, and a non-null + * return value will become the CDATA's text. *

* To include the CDATA as-is, do: *
@@ -156,9 +155,8 @@ public interface StAXFilter { /** * The current event is a TEXT event. *

- * A non-null return value will become the Text text. Return null to skip - * the Text, the specified text to leave the Text unchanged, - * or any other String to create a different Text value. + * A null return value will cause the Comment to be ignored, and a non-null + * return value will become the Text's text. *

* To include the Text as-is, do: *
@@ -204,8 +202,7 @@ public interface StAXFilter { * parent fragment? *

* A non-null return value will become the Comment value. Return null to - * skip the Coment, the specified comment to leave the Comment unchanged, - * or any other String to create a different Comment value. + * skip the Comment. *

* To include the Comment as-is, do: *
@@ -240,8 +237,7 @@ public interface StAXFilter { * parent fragment? *

* A non-null return value will become the CDATA text. Return null to skip - * the CDATA, the specified text to leave the CDATA unchanged, - * or any other String to create a different CDATA value. + * the CDATA. *

* To include the CDATA as-is, do: *
@@ -264,8 +260,7 @@ public interface StAXFilter { * parent fragment? *

* A non-null return value will become the Text. Return null to skip - * the Text, the specified text to leave the Text unchanged, - * or any other String to create a different Text value. + * the Text. *

* To include the Text as-is, do: *