Package org.apache.openjpa.jdbc.meta

Examples of org.apache.openjpa.jdbc.meta.DelegatingJoinable


            // create joinable that delegates all methods to the superclass'
            // joinable, but changes the columns as appropriate using
            // our superclass join fk
            join = sup.assertJoinable(fk.getPrimaryKeyColumn(pkCols[i]));
            join = new DelegatingJoinable(join, fk);
            cols = join.getColumns();
            for (int j = 0; j < cols.length; j++)
                cls.setJoinable(cols[j], join);
        }
    }
View Full Code Here


            // create joinable that delegates all methods to the superclass'
            // joinable, but changes the columns as appropriate using
            // our superclass join fk
            join = sup.assertJoinable(fk.getPrimaryKeyColumn(pkCols[i]));
            join = new DelegatingJoinable(join, fk);
            cols = join.getColumns();
            for (int j = 0; j < cols.length; j++)
                cls.setJoinable(cols[j], join);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.openjpa.jdbc.meta.DelegatingJoinable

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.