private static final String INPUT_SEPARATORS = "[hHuU\\s\\.,+*-/]";
public TimeTextField()
{
super(new TimeFormatter());
this.setDocument(new TimeDocument());
setFocusLostBehavior(JFormattedTextField.COMMIT_OR_REVERT);
addFocusListener(new UpdateFocusListener());
}