Package org.caffinitas.mapper.test.query.tpc

Examples of org.caffinitas.mapper.test.query.tpc.TpcInheritA


            TpcBaseEntity inst = new TpcBaseEntity();
            inst.setId(31);
            inst.setVal("one");
            session.insert(inst);
            inst = new TpcInheritA();
            inst.setId(32);
            inst.setVal("two");
            session.insert(inst);
            inst = new TpcInheritB();
            inst.setId(33);
View Full Code Here


            TpcBaseEntity inst = new TpcBaseEntity();
            inst.setId(41);
            inst.setVal("one");
            session.insert(inst);
            inst = new TpcInheritA();
            inst.setId(42);
            inst.setVal("two");
            session.insert(inst);
            inst = new TpcInheritB();
            inst.setId(43);
View Full Code Here

TOP

Related Classes of org.caffinitas.mapper.test.query.tpc.TpcInheritA

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.