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

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


            session.insert(inst);
            inst = new TpcInheritB2();
            inst.setId(34);
            inst.setVal("three");
            session.insert(inst);
            inst = new TpcInheritC();
            inst.setId(35);
            inst.setVal("three");
            session.insert(inst);

            // again
View Full Code Here


            session.insert(inst);
            inst = new TpcInheritB2();
            inst.setId(44);
            inst.setVal("three");
            session.insert(inst);
            inst = new TpcInheritC();
            inst.setId(45);
            inst.setVal("three");
            session.insert(inst);

            // again
View Full Code Here

TOP

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

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.