Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 11, 2023
1 parent d8cfefa commit 020cfbd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ public static void setInstance(final LocaleBeanUtilsBean newInstance) {
/** Convertor used by this class */
private final LocaleConvertUtilsBean localeConvertUtils;

/** Construct instance with standard conversion bean */
/** Constructs instance with standard conversion bean */
public LocaleBeanUtilsBean() {
this.localeConvertUtils = new LocaleConvertUtilsBean();
}

/**
* Construct instance that uses given locale conversion
* Constructs instance that uses given locale conversion
*
* @param localeConvertUtils use this {@code localeConvertUtils} to perform
* conversions
Expand All @@ -97,7 +97,7 @@ public LocaleBeanUtilsBean(final LocaleConvertUtilsBean localeConvertUtils) {
}

/**
* Construct instance that uses given locale conversion
* Constructs instance that uses given locale conversion
*
* @param localeConvertUtils use this {@code localeConvertUtils} to perform
* conversions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public class ResultSetDynaClass extends AbstractJdbcDynaClass {

/**
* <p>
* Construct a new ResultSetDynaClass for the specified {@code ResultSet}. The property names corresponding to column names in the result set will be lower
* Constructs a new ResultSetDynaClass for the specified {@code ResultSet}. The property names corresponding to column names in the result set will be lower
* cased.
* </p>
*
Expand All @@ -105,7 +105,7 @@ public ResultSetDynaClass(final ResultSet resultSet) throws SQLException {

/**
* <p>
* Construct a new ResultSetDynaClass for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will be
* Constructs a new ResultSetDynaClass for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will be
* lower cased or not, depending on the specified {@code lowerCase} value.
* </p>
*
Expand All @@ -127,7 +127,7 @@ public ResultSetDynaClass(final ResultSet resultSet, final boolean lowerCase) th

/**
* <p>
* Construct a new ResultSetDynaClass for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will be
* Constructs a new ResultSetDynaClass for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will be
* lower cased or not, depending on the specified {@code lowerCase} value.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class ResultSetIterator implements DynaBean, Iterator<DynaBean> {

/**
* <p>
* Construct an {@code Iterator} for the result set being wrapped by the specified {@link ResultSetDynaClass}.
* Constructs an {@code Iterator} for the result set being wrapped by the specified {@link ResultSetDynaClass}.
* </p>
*
* @param dynaClass The {@link ResultSetDynaClass} wrapping the result set we will iterate over
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public class RowSetDynaClass extends AbstractJdbcDynaClass {

/**
* <p>
* Construct a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to column names in the result set will be
* Constructs a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to column names in the result set will be
* lower cased.
* </p>
*
Expand All @@ -98,7 +98,7 @@ public RowSetDynaClass(final ResultSet resultSet) throws SQLException {

/**
* <p>
* Construct a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* Constructs a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* be lower cased or not, depending on the specified {@code lowerCase} value.
* </p>
*
Expand All @@ -117,7 +117,7 @@ public RowSetDynaClass(final ResultSet resultSet, final boolean lowerCase) throw

/**
* <p>
* Construct a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* Constructs a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* be lower cased or not, depending on the specified {@code lowerCase} value.
* </p>
*
Expand All @@ -141,7 +141,7 @@ public RowSetDynaClass(final ResultSet resultSet, final boolean lowerCase, final

/**
* <p>
* Construct a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* Constructs a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* be lower cased or not, depending on the specified {@code lowerCase} value.
* </p>
*
Expand All @@ -164,7 +164,7 @@ public RowSetDynaClass(final ResultSet resultSet, final boolean lowerCase, final

/**
* <p>
* Construct a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* Constructs a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to the column names in the result set will
* be lower cased or not, depending on the specified {@code lowerCase} value.
* </p>
*
Expand Down Expand Up @@ -195,7 +195,7 @@ public RowSetDynaClass(final ResultSet resultSet, final boolean lowerCase, final

/**
* <p>
* Construct a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to column names in the result set will be
* Constructs a new {@link RowSetDynaClass} for the specified {@code ResultSet}. The property names corresponding to column names in the result set will be
* lower cased.
* </p>
*
Expand Down

0 comments on commit 020cfbd

Please sign in to comment.