Package javax.jdo

Examples of javax.jdo.FetchGroup


        }
    }

    public void testPMGetFetchGroupInterfaceNotPersistenceCapable() {
        try {
            FetchGroup fg = pm.getFetchGroup(IEmployee.class, "testPMGetFetchGroupInterfaceNotPersistenceCapable");
            fail("getFetchGroup should throw on nonPersistenceCapable interface.");
        } catch(JDOException ex) {
            // good catch!
        }
    }
View Full Code Here


        }
        else if (!(obj instanceof FetchGroup))
        {
            return false;
        }
        FetchGroup other = (FetchGroup)obj;
        return (other.getName().equals(getName()) && other.getType() == getType());
    }
View Full Code Here

TOP

Related Classes of javax.jdo.FetchGroup

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.