Skip to content

Commit 80a9396

Browse files
committed
Javadoc update for XPath
1 parent 0d1f04a commit 80a9396

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/org/jsoup/nodes/Element.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,8 @@ public boolean is(Evaluator evaluator) {
522522
523523
@param xpath XPath expression
524524
@return matching elements, or an empty list if none match.
525-
@since 1.14.3.
525+
@see #selectXpath(String, Class)
526+
@since 1.14.3
526527
*/
527528
public Elements selectXpath(String xpath) {
528529
return new Elements(NodeUtils.selectXpath(xpath, this, Element.class));
@@ -539,6 +540,7 @@ public Elements selectXpath(String xpath) {
539540
@param nodeType the jsoup node type to return
540541
@see #selectXpath(String)
541542
@return a list of matching nodes
543+
@since 1.14.3
542544
*/
543545
public <T extends Node> List<T> selectXpath(String xpath, Class<T> nodeType) {
544546
return NodeUtils.selectXpath(xpath, this, nodeType);

0 commit comments

Comments
 (0)