Skip to content

Commit 3ce9718

Browse files
committed
Fix malformed Javadoc comments
1 parent ed97ea6 commit 3ce9718

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

src/main/java/org/apache/commons/jxpath/CompiledExpression.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ public interface CompiledExpression {
4545
* <p>
4646
* Will throw an exception if one of the following conditions occurs:
4747
* <ul>
48-
* <li>Elements of the XPath aleady exist, by the path does not in fact describe an existing property
49-
* <li>The AbstractFactory fails to create an instance for an intermediate element.
50-
* <li>The property is not writable (no public, non-static set method)
48+
* <li>Elements of the XPath aleady exist, by the path does not in fact describe an existing property</li>
49+
* <li>The AbstractFactory fails to create an instance for an intermediate element.</li>
50+
* <li>The property is not writable (no public, non-static set method)</li>
5151
* </ul>
5252
*
5353
* @param context base
@@ -118,8 +118,8 @@ public interface CompiledExpression {
118118
/**
119119
* Modifies the value of the property described by the supplied xpath. Will throw an exception if one of the following conditions occurs:
120120
* <ul>
121-
* <li>The XPath does not in fact describe an existing property
122-
* <li>The property is not writable (no public, non-static set method)
121+
* <li>The XPath does not in fact describe an existing property</li>
122+
* <li>The property is not writable (no public, non-static set method)</li>
123123
* </ul>
124124
*
125125
* @param context base

src/main/java/org/apache/commons/jxpath/JXPathContext.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@
385385
* </p>
386386
*
387387
* <ol style='list-style:upper-alpha'>
388-
* <li>If {@code lenient} is {@code false} (default) - methods will throw {@link JXPathNotFoundException}.
388+
* <li>If {@code lenient} is {@code false} (default) - methods will throw {@link JXPathNotFoundException}.</li>
389389
* <li>If {@code lenient} is {@code true} - methods will throw no exception and return a value appropriate for that method to express the absence: might be a
390-
* Java {@code null} or a {@link Pointer} whose {@link Pointer#getValue()} returns {@code null}, depends on the method.
390+
* Java {@code null} or a {@link Pointer} whose {@link Pointer#getValue()} returns {@code null}, depends on the method.</li>
391391
* </ol>
392392
* </li>
393393
* </ul>
@@ -514,9 +514,9 @@ protected JXPathContext(final JXPathContext parentContext, final Object contextB
514514
* <p>
515515
* Will throw an exception if one of the following conditions occurs:
516516
* <ul>
517-
* <li>Elements of the XPath aleady exist, but the path does not in fact describe an existing property
518-
* <li>The AbstractFactory fails to create an instance for an intermediate element.
519-
* <li>The property is not writable (no public, non-static set method)
517+
* <li>Elements of the XPath aleady exist, but the path does not in fact describe an existing property</li>
518+
* <li>The AbstractFactory fails to create an instance for an intermediate element.</li>
519+
* <li>The property is not writable (no public, non-static set method)</li>
520520
* </ul>
521521
*
522522
* @param xpath indicating position to create
@@ -674,8 +674,8 @@ public JXPathContext getParentContext() {
674674
* configured with {@link #setLenient(boolean)}:
675675
* </p>
676676
* <ul>
677-
* <li>{@code false} (default) the method will throw a {@link JXPathNotFoundException}.
678-
* <li>{@code true} the method returns a pointer whose {@link Pointer#getValue()} method will always return null.
677+
* <li>{@code false} (default) the method will throw a {@link JXPathNotFoundException}.</li>
678+
* <li>{@code true} the method returns a pointer whose {@link Pointer#getValue()} method will always return null.</li>
679679
* </ul>
680680
*
681681
* @param xpath desired
@@ -945,8 +945,8 @@ public void setNamespaceContextPointer(final Pointer namespaceContextPointer) {
945945
/**
946946
* Modifies the value of the property described by the supplied xpath. Will throw an exception if one of the following conditions occurs:
947947
* <ul>
948-
* <li>The XPath does not in fact describe an existing property
949-
* <li>The property is not writable (no public, non-static set method)
948+
* <li>The XPath does not in fact describe an existing property</li>
949+
* <li>The property is not writable (no public, non-static set method)</li>
950950
* </ul>
951951
*
952952
* @param xpath indicating position

src/main/java/org/apache/commons/jxpath/JXPathIntrospector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ private static synchronized JXPathBeanInfo findInformant(final Class beanClass)
122122
* <p>
123123
* The process of creation of JXPathBeanInfo is as follows:
124124
* <ul>
125-
* <li>If class named {@code <beanClass>XBeanInfo} exists, an instance of that class is allocated.
126-
* <li>Otherwise, an instance of {@link JXPathBasicBeanInfo JXPathBasicBeanInfo} is allocated.
125+
* <li>If class named {@code <beanClass>XBeanInfo} exists, an instance of that class is allocated.</li>
126+
* <li>Otherwise, an instance of {@link JXPathBasicBeanInfo JXPathBasicBeanInfo} is allocated.</li>
127127
* </ul>
128128
*
129129
* @param beanClass whose info to get

0 commit comments

Comments
 (0)