Пример #1
0
 /** @return the date, or null if a valid date is not set in the control */
 @Override
 public Date getDate() {
   String text = textControl.getText();
   try {
     return fDateFormat.parse(text);
   } catch (IllegalArgumentException e) {
     return null;
   }
 }