Skip to content

Commit

Permalink
Normalize getter Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 31, 2023
1 parent 743fc1c commit 6358dd8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/beanutils2/BeanMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ public Iterator<String> keyIterator() {


/**
* Get the keys for this BeanMap.
* Gets the keys for this BeanMap.
* <p>
* Write-only properties are <b>not</b> included in the returned set of property names, although it is possible to
* set their value and to get their type.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public class ConvertUtilsBean {
private static final Log LOG = LogFactory.getLog(ConvertUtilsBean.class);

/**
* Get singleton instance
* Gets singleton instance
* @return The singleton instance
*/
protected static ConvertUtilsBean getInstance() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public Class<?> getContentType() {
}

/**
* Get the name of this property.
* Gets the name of this property.
* @return the name of the property
*/
public String getName() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ protected DynaProperty createDynaProperty(final ResultSetMetaData metadata, fina
}

/**
* Get the table column name for the specified property name.
* Gets the table column name for the specified property name.
*
* @param name The property name
* @return The column name (which can be different if the <i>lowerCase</i> option is used).
Expand Down Expand Up @@ -182,7 +182,7 @@ public String getName() {
}

/**
* Get a column value from a {@link ResultSet} for the specified name.
* Gets a column value from a {@link ResultSet} for the specified name.
*
* @param resultSet The result set
* @param name The property name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public ResultSetDynaClass(final ResultSet resultSet, final boolean lowerCase, fi
}

/**
* Get a value from the {@link ResultSet} for the specified property name.
* Gets a value from the {@link ResultSet} for the specified property name.
*
* @param name The property name
* @return The value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public TestResultSetInconsistent(final ResultSetMetaData metaData) {
}

/**
* Get an columns's value
* Gets an columns's value
*
* @param columnName Name of the column
* @return the column value
Expand Down

0 comments on commit 6358dd8

Please sign in to comment.