Package org.apache.jdo.tck.pc.company

Examples of org.apache.jdo.tck.pc.company.IMeetingRoom


     * @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");
    }
View Full Code Here


     * @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 = "FCDSMeetingRoom<" + roomid + ">";
        return
            helper.equals(roomid, otherMeetingRoom.getRoomid(), where + ".roomid") &
            helper.equals(name, otherMeetingRoom.getName(), where + ".name");
    }
View Full Code Here

TOP

Related Classes of org.apache.jdo.tck.pc.company.IMeetingRoom

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.