// address' effective date information with it.
// since emergency contacts don't care about effective date, we'll just use today's date.
try {
Calendar calendar = new GregorianCalendar();
calendar.setTime(new java.util.Date());
Date effDate = new Date("EffectiveDate");
effDate.setMonth(Integer.toString(calendar.get(Calendar.MONTH)+1));
effDate.setDay(Integer.toString(calendar.get(Calendar.DAY_OF_MONTH)));
effDate.setYear(Integer.toString(calendar.get(Calendar.YEAR)));
a.setEffectiveDate(effDate);
} catch (Exception exc) {
org.openeai.OpenEaiObject.logger.fatal(exc.getMessage(), exc);
// ec_textArea.setText("Invalid EffectiveDate '" + sDate + "' " + exc.getMessage());
return;