858687888990919293
{ defaultValue = getDate(prop); } catch (ParseException e) { throw new IntakeRuntimeException("Could not parse " + prop + " into a valid Date for the default value", e); } }
113114115116117118119120121
{ emptyValue = getDate(prop); } catch (ParseException e) { throw new IntakeRuntimeException("Could not parse " + prop + " into a valid Date for the empty value", e); } }
6162636465666768697071
*/ public void setDefaultValue(String prop) { if (prop != null) { throw new IntakeRuntimeException( "Default values are not valid for " + this.getClass().getName()); } defaultValue = null;
8182838485868788899091
*/ public void setEmptyValue(String prop) { if (prop != null) { throw new IntakeRuntimeException( "Empty values are not valid for " + this.getClass().getName()); } emptyValue = null;