Changed DSet.Element to DSet.Entry in preparation for the addition of

array element update support. (Arrays have elements, sets have entries.)


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1133 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-03-18 23:21:26 +00:00
parent 76cff072be
commit 7ccb9594b9
18 changed files with 323 additions and 327 deletions
@@ -1,13 +1,13 @@
//
// $Id: TableDirector.java,v 1.5 2001/10/23 23:52:01 mdb Exp $
// $Id: TableDirector.java,v 1.6 2002/03/18 23:21:26 mdb Exp $
package com.threerings.parlor.client;
import java.util.ArrayList;
import com.threerings.presents.dobj.ElementAddedEvent;
import com.threerings.presents.dobj.ElementUpdatedEvent;
import com.threerings.presents.dobj.ElementRemovedEvent;
import com.threerings.presents.dobj.EntryAddedEvent;
import com.threerings.presents.dobj.EntryUpdatedEvent;
import com.threerings.presents.dobj.EntryRemovedEvent;
import com.threerings.presents.dobj.SetListener;
import com.threerings.crowd.data.BodyObject;
@@ -190,10 +190,10 @@ public class TableDirector
}
// documentation inherited
public void elementAdded (ElementAddedEvent event)
public void entryAdded (EntryAddedEvent event)
{
if (event.getName().equals(_tableField)) {
Table table = (Table)event.getElement();
Table table = (Table)event.getEntry();
// check to see if we just joined a table
checkSeatedness(table);
@@ -204,10 +204,10 @@ public class TableDirector
}
// documentation inherited
public void elementUpdated (ElementUpdatedEvent event)
public void entryUpdated (EntryUpdatedEvent event)
{
if (event.getName().equals(_tableField)) {
Table table = (Table)event.getElement();
Table table = (Table)event.getEntry();
// check to see if we just joined or left a table
checkSeatedness(table);
@@ -218,7 +218,7 @@ public class TableDirector
}
// documentation inherited
public void elementRemoved (ElementRemovedEvent event)
public void entryRemoved (EntryRemovedEvent event)
{
if (event.getName().equals(_tableField)) {
Integer tableId = (Integer)event.getKey();
@@ -1,5 +1,5 @@
//
// $Id: Table.java,v 1.7 2002/02/01 23:32:37 mdb Exp $
// $Id: Table.java,v 1.8 2002/03/18 23:21:26 mdb Exp $
package com.threerings.parlor.data;
@@ -20,7 +20,7 @@ import com.threerings.parlor.game.GameConfig;
* the Parlor services.
*/
public class Table
implements DSet.Element, ParlorCodes
implements DSet.Entry, ParlorCodes
{
/** The unique identifier for this table. */
public Integer tableId;