@Override
public Object nullSafeGet(Tuple rs, String[] names, SessionImplementor session, Object owner)
throws HibernateException {
if ( names.length > 1 ) {
throw new NotYetImplementedException( "Multi column property not implemented yet" );
}
return nullSafeGet( rs, names[0], session, owner );
}