* @throws ClassCastException if the specified instances' type prevents
* it from being compared to this instance.
*/
public boolean deepCompareFields(Object other,
EqualityHelper helper) {
IMeetingRoom otherMeetingRoom = (IMeetingRoom)other;
String where = "FCAppMeetingRoom<" + roomid + ">";
return
helper.equals(roomid, otherMeetingRoom.getRoomid(), where + ".roomid") &
helper.equals(name, otherMeetingRoom.getName(), where + ".name");
}