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 b0faceb commit 53a3507
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/validator/Form.java
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ public void setExtends(final String inherit) {
}

/**
* Get extends flag.
* Gets extends flag.
*
* @return The extending value
* @since 1.2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ public void addValidatorAction(final ValidatorAction va) {
}

/**
* Get a <code>ValidatorAction</code> based on it's name.
* Gets a <code>ValidatorAction</code> based on it's name.
* @param key The validator action key.
* @return The validator action.
*/
Expand All @@ -376,7 +376,7 @@ public ValidatorAction getValidatorAction(final String key) {
}

/**
* Get an unmodifiable <code>Map</code> of the <code>ValidatorAction</code>s.
* Gets an unmodifiable <code>Map</code> of the <code>ValidatorAction</code>s.
* @return Map of validator actions.
*/
public Map<String, ValidatorAction> getValidatorActions() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public Set<String> getPropertyNames() {
}

/**
* Get a <code>Map</code> of any <code>Object</code>s returned from
* Gets a <code>Map</code> of any <code>Object</code>s returned from
* validation routines.
*
* @return Map of objections returned by validators.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2054,13 +2054,13 @@ public enum ArrayType {
COUNTRY_CODE_PLUS,
/** Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table containing deleted country code TLDs */
COUNTRY_CODE_MINUS,
/** Get a copy of the generic TLDS table */
/** Gets a copy of the generic TLDS table */
GENERIC_RO,
/** Get a copy of the country code table */
/** Gets a copy of the country code table */
COUNTRY_CODE_RO,
/** Get a copy of the infrastructure table */
/** Gets a copy of the infrastructure table */
INFRASTRUCTURE_RO,
/** Get a copy of the local table */
/** Gets a copy of the local table */
LOCAL_RO,
/**
* Update (or get a copy of) the LOCAL_TLDS_PLUS table containing additional local TLDs
Expand Down Expand Up @@ -2159,7 +2159,7 @@ public static synchronized void updateTLDOverride(final ArrayType table, final S
}

/**
* Get a copy of a class level internal array.
* Gets a copy of a class level internal array.
* @param table the array type (any of the enum values)
* @return a copy of the array
* @throws IllegalArgumentException if the table type is unexpected (should not happen)
Expand Down Expand Up @@ -2205,7 +2205,7 @@ public static synchronized void updateTLDOverride(final ArrayType table, final S
}

/**
* Get a copy of an instance level internal array.
* Gets a copy of an instance level internal array.
* @param table the array type (any of the enum values)
* @return a copy of the array
* @throws IllegalArgumentException if the table type is unexpected, e.g. GENERIC_RO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ public Validator[] getDefaultValidators() {
}

/**
* Get the Validator for a given IBAN
* Gets the Validator for a given IBAN
*
* @param code a string starting with the ISO country code (e.g. an IBAN)
*
Expand Down

0 comments on commit 53a3507

Please sign in to comment.