Ejemplo n.º 1
0
 @Override
 public void replaceSelection(String text) {
   if (validate(text)) {
     super.replaceSelection(text);
   }
 }
Ejemplo n.º 2
0
 @Override
 public void replaceSelection(String text) {
   if (text.matches("[0-9]*")) {
     super.replaceSelection(text);
   }
 }