Skip to content

Commit

Permalink
Some Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
gldiazcardenas committed Oct 25, 2023
1 parent 37e2097 commit e0db1b0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions gemsfx/src/main/java/com/dlsc/gemsfx/PhoneNumberField.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,17 @@
import java.util.function.UnaryOperator;

/**
* A control for entering phone numbers. The control supports a list of available country codes and works based on the
* {@link CountryCallingCode CountryCallingCode} interface. This interface allows customizing the country codes and their
* <p>A control for entering phone numbers. By default, the phone numbers are expressed in international format and will be
* delivered via the {@link #phoneNumberProperty() phone number} property, however, it would also be possible to enter local phone number by
* using {@link #forceLocalNumberProperty() force local} property.</p>
*
* <p>A masking technique was implemented to let the user know what is the
* expected format, you can control it by using a custom {@link #maskProviderProperty()}.</p>
*
* <p>The control supports a list of {@link #getAvailableCountryCodes() available country codes} and works based on
* the {@link CountryCallingCode CountryCallingCode} interface. This interface allows customizing the country codes and their
* respective area codes, in case the default values are not sufficient or the numbers change.
* </p>
*/
public class PhoneNumberField extends Control {

Expand Down

0 comments on commit e0db1b0

Please sign in to comment.