@Override
public final void nullSafeSet(Tuple st, Object value, String[] names, boolean[] settable, SessionImplementor session)
throws HibernateException {
if (settable.length > 1) {
throw new NotYetImplementedException("Multi column property not implemented yet");
}
if ( settable[0] ) {
nullSafeSet( st, value, names, session );
}
}