Package javax.jdo.metadata

Examples of javax.jdo.metadata.Metadata


        pm = getPM();
        String className = "org.apache.jdo.tck.pc.company.Employee";
        TypeMetadata metadata = pmf.getMetadata(className);
        assertNotNull(ASSERTION_FAILED
                + "metadata must not be null for abstract class " + className, metadata);
        Metadata parent = metadata.getParent();
        assertNotNull(ASSERTION_FAILED
                + "parent metadata must not be null for abstract class " + className, parent);
        String name = metadata.getName();
        String packageName = ((PackageMetadata)parent).getName();
        assertEquals(ASSERTION_FAILED
View Full Code Here

TOP

Related Classes of javax.jdo.metadata.Metadata

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.