Package org.apache.openjpa.kernel.QueryImpl

Examples of org.apache.openjpa.kernel.QueryImpl.Compilation


        // make sure that there's an entry in the cache now
        assertEquals(1, cache.size());
       
        // dig into the entry and check its internal state
        Compilation comp = (Compilation) cache.values().iterator().next();
        assertEquals(NamedEntity.class,
            ((ParsedJPQL) comp.storeData).getCandidateType());
       
        emf.close();
    }
View Full Code Here

TOP

Related Classes of org.apache.openjpa.kernel.QueryImpl.Compilation

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.