Package com.mobixess.jodb.core.plugin

Examples of com.mobixess.jodb.core.plugin.IClassProcessor.translate()


        IOBase base = ioTicket.getBase();
       
       
        IClassProcessor classProcessor = JODBPluginRegistry.getInstance().getClassProcessor(rootObject.getClass());
       
        Object objectToPersist = classProcessor.translate(rootObject);
       
        ClassDescriptor classDescr = session.getDescriptorForClass(objectToPersist.getClass());
        FieldAndIDRecord[] fields = classDescr.getAllFields();
       
        Vector<IndexingRecord> indexes = null;
View Full Code Here


                Class originClass = getObject().getClass();
                if(PrimitiveJavaTypesUtil.isPrimitiveWrapper(originClass)){
                    return getObject();
                }
                IClassProcessor classProcessor = JODBPluginRegistry.getInstance().getClassProcessor(originClass);
                result = classProcessor.translate(getObject());
                _translatedOrigin = new WeakReference(result);
            }
            return result;
        }
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.