Skip to content

Commit 65f14d0

Browse files
committed
Javadoc: Use semantic tag <strong> instead of style tag <b>
1 parent 143b4fc commit 65f14d0

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
* AbstractFactory AbstractFactory} and install it on the JXPathContext. Then
210210
* call {@link JXPathContext#createPath createPathAndSetValue()} instead of
211211
* "setValue". JXPathContext will invoke your AbstractFactory when it discovers
212-
* that an intermediate node of the path is <b>null</b>. It will not override
212+
* that an intermediate node of the path is <strong>null</strong>. It will not override
213213
* existing nodes.
214214
*
215215
* <pre>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ public Set getUsedNamespaces() {
9898
* construction, this method returns null
9999
* @param name - name of the method, which can one these forms:
100100
* <ul>
101-
* <li><b>methodname</b>, if invoking a method on an object passed as the
101+
* <li><strong>methodname</strong>, if invoking a method on an object passed as the
102102
* first parameter</li>
103-
* <li><b>Classname.new</b>, if looking for a constructor</li>
104-
* <li><b>subpackage.subpackage.Classname.new</b>, if looking for a
103+
* <li><strong>Classname.new</strong>, if looking for a constructor</li>
104+
* <li><strong>subpackage.subpackage.Classname.new</strong>, if looking for a
105105
* constructor in a subpackage</li>
106-
* <li><b>Classname.methodname</b>, if looking for a static method</li>
107-
* <li><b>subpackage.subpackage.Classname.methodname</b>, if looking for a
106+
* <li><strong>Classname.methodname</strong>, if looking for a static method</li>
107+
* <li><strong>subpackage.subpackage.Classname.methodname</strong>, if looking for a
108108
* static method of a class in a subpackage</li>
109109
* </ul>
110110
* @param parameters Object[] of parameters

src/test/java/org/apache/commons/jxpath/ri/model/TestMixedModelFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class TestMixedModelFactory extends AbstractFactory {
3333

3434
/**
3535
* Create a new instance and put it in the collection on the parent object.
36-
* Return <b>false</b> if this factory cannot create the requested object.
36+
* Return <strong>false</strong> if this factory cannot create the requested object.
3737
*/
3838
@Override
3939
public boolean createObject(

src/test/java/org/apache/commons/jxpath/ri/model/beans/TestBeanFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class TestBeanFactory extends AbstractFactory {
2929

3030
/**
31-
* Return <b>false</b> if this factory cannot create the requested object.
31+
* Return <strong>false</strong> if this factory cannot create the requested object.
3232
*/
3333
@Override
3434
public boolean createObject(

src/test/java/org/apache/commons/jxpath/ri/model/dom/TestDOMFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class TestDOMFactory extends AbstractFactory {
2929

3030
/**
31-
* Return <b>false</b> if this factory cannot create the requested object.
31+
* Return <strong>false</strong> if this factory cannot create the requested object.
3232
*/
3333
@Override
3434
public boolean createObject(

src/test/java/org/apache/commons/jxpath/ri/model/dynamic/TestDynamicPropertyFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class TestDynamicPropertyFactory extends AbstractFactory {
3333

3434
/**
3535
* Create a new instance and put it in the collection on the parent object.
36-
* Return <b>false</b> if this factory cannot create the requested object.
36+
* Return <strong>false</strong> if this factory cannot create the requested object.
3737
*/
3838
@Override
3939
public boolean createObject(

src/test/java/org/apache/commons/jxpath/ri/model/jdom/TestJDOMFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class TestJDOMFactory extends AbstractFactory {
3030

3131
/**
3232
* Create a new instance and put it in the collection on the parent object.
33-
* Return <b>false</b> if this factory cannot create the requested object.
33+
* Return <strong>false</strong> if this factory cannot create the requested object.
3434
*/
3535
@Override
3636
public boolean createObject(

0 commit comments

Comments
 (0)