Package oracle.toplink.essentials.mappings

Examples of oracle.toplink.essentials.mappings.DirectToFieldMapping


     *
     * Process a Serialized or Basic into a DirectToFieldMapping. If neither
     * is found a DirectToFieldMapping is created regardless.
     */
    protected void processDirectToFieldMapping(DatabaseField field) {
        DirectToFieldMapping mapping = new DirectToFieldMapping();
        mapping.setField(field);
        mapping.setIsReadOnly(field.isReadOnly());
        mapping.setAttributeName(getAttributeName());
    mapping.setIsOptional(isOptional());
       
        if (usesIndirection()) {
            m_logger.logWarningMessage(m_logger.IGNORE_BASIC_FETCH_LAZY, this);
        }
       
View Full Code Here

TOP

Related Classes of oracle.toplink.essentials.mappings.DirectToFieldMapping

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.