Ejemplo n.º 1
0
 /**
  * Set (and compile) phonex expression.
  *
  * @param phonex
  * @throws PhonexPatternException if the given phonex is not valid
  */
 @Override
 public void setPhonex(String phonex) throws PhonexPatternException {
   pattern = PhonexPattern.compile(phonex);
   if (pattern != null) updateOutputs();
 }