The JDateChooser class when it receives an erroneous date tries to correct it, how can I avoid this behavior?
JDateChooser jDateChooserFecha=new JDateChooser();
SimpleDateFormat formatoFecha = new SimpleDateFormat("dd/MM/yyyy");
jDateChooserFecha.setDate(formatoFecha.parse("30/02/2016"));
If I execute the previous code, the value stored in jDateChooserDate is "03/02/2016"