super(new JFormattedTextField(formatter));
df = (JFormattedTextField)getComponent();
df.setFocusLostBehavior(JFormattedTextField.PERSIST);
}
public FormattedCellEditor(AbstractFormatterFactory factory) {
super(new JFormattedTextField(factory));
df = (JFormattedTextField)getComponent();
}