Beginnings of invocation services implementation.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@67 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-07-19 05:56:20 +00:00
parent a372ebd342
commit 6663aae772
10 changed files with 518 additions and 17 deletions
@@ -1,5 +1,5 @@
//
// $Id: DObject.java,v 1.11 2001/06/13 05:17:55 mdb Exp $
// $Id: DObject.java,v 1.12 2001/07/19 05:56:20 mdb Exp $
package com.threerings.cocktail.cher.dobj;
@@ -235,6 +235,19 @@ public class DObject
_oid = oid;
}
/**
* Called by derived instances when an attribute setter method was
* called.
*/
protected void requestAttributeChange (String name, Object value)
{
// generate an attribute changed event
AttributeChangedEvent event = new AttributeChangedEvent(
_oid, name, value);
// and dispatch it to our dobjmgr
_mgr.postEvent(event);
}
protected int _oid;
protected DObjectManager _mgr;
protected ArrayList _subscribers = new ArrayList();