Package er.extensions.eof.ERXDatabaseContextDelegate

Examples of er.extensions.eof.ERXDatabaseContextDelegate.AutoBatchFaultingEnterpriseObject


       
        @Override
        public Object valueInObject(Object object) {
             Object result = _other.valueInObject(object);
             if(result instanceof AutoBatchFaultingEnterpriseObject && EOFaultHandler.isFault(result)) {
                 AutoBatchFaultingEnterpriseObject eo = (AutoBatchFaultingEnterpriseObject)object;
                 AutoBatchFaultingEnterpriseObject target = (AutoBatchFaultingEnterpriseObject)result;
                 target.touchFromBatchFaultingSource(eo, key());
             }
             return result;
        }
View Full Code Here

TOP

Related Classes of er.extensions.eof.ERXDatabaseContextDelegate.AutoBatchFaultingEnterpriseObject

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.