Examples of invokeOnRowForFields()


Examples of info.archinnov.achilles.internal.metadata.holder.PropertyMetaRowExtractor.invokeOnRowForFields()

            final PropertyMetaRowExtractor rowExtractor = pm.forRowExtraction();
            if (pm.structure().isEmbeddedId()) {
                Object compoundKey = rowExtractor.extractCompoundPrimaryKeyFromRow(row, meta, MANAGED);
                pm.forValues().setValueToField(entity, compoundKey);
            } else {
                Object value = rowExtractor.invokeOnRowForFields(row);
                pm.forValues().setValueToField(entity, value);
            }
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.