Provide access to the removed entry when one is removed.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1936 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-11-12 20:37:52 +00:00
parent b90d5e4b85
commit 14024fbd23
@@ -1,5 +1,5 @@
//
// $Id: EntryRemovedEvent.java,v 1.9 2002/07/23 05:52:48 mdb Exp $
// $Id: EntryRemovedEvent.java,v 1.10 2002/11/12 20:37:52 mdb Exp $
package com.threerings.presents.dobj;
@@ -60,6 +60,14 @@ public class EntryRemovedEvent extends DEvent
return _key;
}
/**
* Returns the entry that was in the set prior to being updated.
*/
public DSet.Entry getOldEntry ()
{
return _oldEntry;
}
/**
* Applies this event to the object.
*/
@@ -67,9 +75,11 @@ public class EntryRemovedEvent extends DEvent
throws ObjectAccessException
{
DSet set = (DSet)target.getAttribute(_name);
// fetch the previous value for interested callers
_oldEntry = set.get(_key);
// remove it from the set
set.removeKey(_key);
return true;
}
/**
@@ -113,4 +123,5 @@ public class EntryRemovedEvent extends DEvent
protected String _name;
protected Object _key;
protected transient DSet.Entry _oldEntry;
}