Switched to a better name.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4345 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-08-24 18:42:22 +00:00
parent b4d66588c1
commit 6a47c766cc
2 changed files with 9 additions and 10 deletions
@@ -34,13 +34,14 @@ import static com.threerings.presents.Log.log;
/**
* Maps distributed object events to methods using reflection.
*/
public class DynamicEventDispatcher
public class DynamicListener
implements AttributeChangeListener, ElementUpdateListener, SetListener
{
/**
* Creates a dynamic event dispatcher on the supplied target.
* Creates a listener that dynamically dispatches events on the supplied
* target.
*/
public DynamicEventDispatcher (Object target)
public DynamicListener (Object target)
{
_target = target;
_finder = new MethodFinder(target.getClass());