CheckBoxActionListener model = new CheckBoxActionListener(uie, errorIndex);
knockModel = model;
check.addActionListener(model);
} else if(uie.getValue() instanceof Date) {
JDateChooser dc = new JDateChooser((Date)uie.getValue());
comp = dc;
DateListener model = new DateListener(uie, errorIndex);
knockModel = model;
dc.getDateEditor().addPropertyChangeListener(model);
} else {
//не булевое - целое, вещественное, строка
JTextArea ta = new JTextArea(uie.getValue().toString());
comp = ta;