Skip to content

Commit

Permalink
Javadoc: Use semantic tag <strong> instead of style tag <b>
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 15, 2024
1 parent 143b4fc commit 65f14d0
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/jxpath/JXPathContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
* AbstractFactory AbstractFactory} and install it on the JXPathContext. Then
* call {@link JXPathContext#createPath createPathAndSetValue()} instead of
* "setValue". JXPathContext will invoke your AbstractFactory when it discovers
* that an intermediate node of the path is <b>null</b>. It will not override
* that an intermediate node of the path is <strong>null</strong>. It will not override
* existing nodes.
*
* <pre>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/org/apache/commons/jxpath/PackageFunctions.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ public Set getUsedNamespaces() {
* construction, this method returns null
* @param name - name of the method, which can one these forms:
* <ul>
* <li><b>methodname</b>, if invoking a method on an object passed as the
* <li><strong>methodname</strong>, if invoking a method on an object passed as the
* first parameter</li>
* <li><b>Classname.new</b>, if looking for a constructor</li>
* <li><b>subpackage.subpackage.Classname.new</b>, if looking for a
* <li><strong>Classname.new</strong>, if looking for a constructor</li>
* <li><strong>subpackage.subpackage.Classname.new</strong>, if looking for a
* constructor in a subpackage</li>
* <li><b>Classname.methodname</b>, if looking for a static method</li>
* <li><b>subpackage.subpackage.Classname.methodname</b>, if looking for a
* <li><strong>Classname.methodname</strong>, if looking for a static method</li>
* <li><strong>subpackage.subpackage.Classname.methodname</strong>, if looking for a
* static method of a class in a subpackage</li>
* </ul>
* @param parameters Object[] of parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class TestMixedModelFactory extends AbstractFactory {

/**
* Create a new instance and put it in the collection on the parent object.
* Return <b>false</b> if this factory cannot create the requested object.
* Return <strong>false</strong> if this factory cannot create the requested object.
*/
@Override
public boolean createObject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class TestBeanFactory extends AbstractFactory {

/**
* Return <b>false</b> if this factory cannot create the requested object.
* Return <strong>false</strong> if this factory cannot create the requested object.
*/
@Override
public boolean createObject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class TestDOMFactory extends AbstractFactory {

/**
* Return <b>false</b> if this factory cannot create the requested object.
* Return <strong>false</strong> if this factory cannot create the requested object.
*/
@Override
public boolean createObject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class TestDynamicPropertyFactory extends AbstractFactory {

/**
* Create a new instance and put it in the collection on the parent object.
* Return <b>false</b> if this factory cannot create the requested object.
* Return <strong>false</strong> if this factory cannot create the requested object.
*/
@Override
public boolean createObject(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class TestJDOMFactory extends AbstractFactory {

/**
* Create a new instance and put it in the collection on the parent object.
* Return <b>false</b> if this factory cannot create the requested object.
* Return <strong>false</strong> if this factory cannot create the requested object.
*/
@Override
public boolean createObject(
Expand Down

0 comments on commit 65f14d0

Please sign in to comment.