Package org.eclipse.persistence.internal.jpa.metadata.tables

Examples of org.eclipse.persistence.internal.jpa.metadata.tables.CollectionTableMetadata


     * ensure a table is defaulted.
     */
    protected void processCollectionTable(CollectionMapping mapping) {
        // Check that we loaded a collection table otherwise default one.       
        if (m_collectionTable == null) {
            m_collectionTable = new CollectionTableMetadata(this);
        }
       
        // Process any table defaults and log warning messages.
        processTable(m_collectionTable, getDefaultCollectionTableName());
       
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.internal.jpa.metadata.tables.CollectionTableMetadata

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.