Advertisement
Guest User

example

a guest
Apr 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if (newValue != null) {
  2. if (!newValue.matches("^\\(?([0-9]{3})\\)?[-.\\s]?([0-9]{3})[-.\\s]?([0-9]{4})$")) {
  3. ContactGuiCodeBehind.this.phoneNumberTextField.setText(oldValue);
  4. ContactGuiCodeBehind.this.idErrorLabel.setVisible(true);
  5. } else {
  6. ContactGuiCodeBehind.this.phoneNumberTextField.setText(newValue);
  7. ContactGuiCodeBehind.this.idErrorLabel.setVisible(false);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement