Package er.extensions.eof

Examples of er.extensions.eof.ERXKeyGlobalID


            if (eo instanceof ERXGenericRecord) {
                gid = ((ERXGenericRecord) eo).permanentGlobalID();
            } else {
                throw new IllegalArgumentException("Can't handle non ERXGenericRecord");
            }
            ERXKeyGlobalID keyGID = ERXKeyGlobalID.globalIDForGID((EOKeyGlobalID) gid);
            setGid(keyGID);
        }
    }
View Full Code Here


    @Override
    public void init(EOEditingContext ec) {
        super.init(ec);
        EOEnterpriseObject user = ERCoreBusinessLogic.actor(ec);
        if (user != null && user instanceof ERXGenericRecord) {
            ERXKeyGlobalID gid = ERXKeyGlobalID.globalIDForGID(((ERXGenericRecord) user).permanentGlobalID());
            setUserGlobalID(gid);
        }
        setCreated(new NSTimestamp());
    }
View Full Code Here

TOP

Related Classes of er.extensions.eof.ERXKeyGlobalID

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.