SetAdapter, because SetListener is a pain sometimes.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2592 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2003-05-20 18:41:46 +00:00
parent 8c8cd1a2ea
commit c7908862ff
@@ -0,0 +1,29 @@
//
// $Id: SetAdapter.java,v 1.1 2003/05/20 18:41:46 ray Exp $
package com.threerings.presents.dobj;
/**
* Implements the methods in SetListener so that you don't have to
* implement the ones you don't want to.
*/
public class SetAdapter implements SetListener
{
// documentation inherited from interface SetListener
public void entryAdded (EntryAddedEvent event)
{
// override to provide functionality
}
// documentation inherited from interface SetListener
public void entryUpdated (EntryUpdatedEvent event)
{
// override to provide functionality
}
// documentation inherited from interface SetListener
public void entryRemoved (EntryRemovedEvent event)
{
// override to provide functionality
}
}