This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git

commit 87f4472603e35268519bb03e55dcde2e01aacd0e
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Apr 12 09:55:00 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/jxpath/Pointer.java | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/jxpath/Pointer.java 
b/src/main/java/org/apache/commons/jxpath/Pointer.java
index 437a756..c1589e9 100644
--- a/src/main/java/org/apache/commons/jxpath/Pointer.java
+++ b/src/main/java/org/apache/commons/jxpath/Pointer.java
@@ -34,6 +34,7 @@ public interface Pointer extends Cloneable, Comparable, 
Serializable {
      * <p>
      * {@code Pointer  ptr = ctx.getPointer("//employees[firstName = 'John']")
      * }
+     * </p>
      * <p>
      * The value of {@code ptr.asPath()} will look something like {@code 
"/departments[2]/employees[3]"}, so, basically, it represents the concrete 
location(s)
      * of the result of a search performed by JXPath. If an object in the 
pointer's path is a Dynamic Property object (like a Map), the asPath method 
generates
@@ -54,8 +55,9 @@ public interface Pointer extends Cloneable, Comparable, 
Serializable {
     /**
      * Returns the raw value of the object, property or collection element 
this pointer represents. Never converts the object to a canonical type: returns 
it as
      * is.
-     *
+     * <p>
      * For example, for an XML element, getNode() will return the element 
itself rather than the text it contains.
+     * </p>
      *
      * @return Object node
      */
@@ -71,8 +73,9 @@ public interface Pointer extends Cloneable, Comparable, 
Serializable {
     /**
      * Returns the value of the object, property or collection element this 
pointer represents. May convert the value to one of the canonical InfoSet types:
      * String, Number, Boolean, Set.
-     *
+     * <p>
      * For example, in the case of an XML element, getValue() will return the 
text contained by the element rather than the element itself.
+     * </p>
      *
      * @return Object value
      */

Reply via email to