Re: editingContext.refaultObjects();
Re: editingContext.refaultObjects();
- Subject: Re: editingContext.refaultObjects();
- From: Justin Tocci <email@hidden>
- Date: Thu, 26 Aug 2004 12:05:51 -0500
Man I look forward to the day when I can just whip out java like that.
Thanks (yet again) Arturo. If you're ever in Fort Wayne look me up, my
treat.
justin tocci
fort wayne, in
On Aug 26, 2004, at 11:55 AM, Arturo Perez wrote:
Justin Tocci wrote:
Sorry, I'm really sketchy on java. I'm trying to use something like
that, but I'm lost as to how to find the object to stick into the
method. I want the object that is going to be commited as a result of
the saveChanges() method. Do you know a way to get the object(s) that
would react to the saveChanges() method?
I think my code needs to look something like:
editingContext.itemsThatAreWaitingToSave(EOEnterpriseObject object);
EOEditingContext.saveChanges();
EOEditingContext.refreshObject(object)
NSMutableArray a = new NSMutableArray();
a.addObjects(ec.insertedObjects());
a.addObjects(ec.deletedObjects());
a.addObjects(ec.updatedObjects());
ec.saveChanges();
NSMutableArray gids = new NSMutableArray();
for (int g = 0; g < a.count(); g++)
gids.addObject(ec.globalIDForObject((EOEnterpriseObject)a.objectAtIndex(
g)));
ec.invalidateObjectsWithGlobalID(gids);
-arturo
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.